2008-09-25 21:05:52 -04:00
|
|
|
jQuery(document).ready( function($) {
|
2008-09-28 00:11:27 -04:00
|
|
|
$('#show-settings-link').click(function () {
|
2008-10-31 22:52:43 -04:00
|
|
|
$('#screen-options-wrap').slideToggle('normal', function(){
|
|
|
|
if ( $(this).hasClass('screen-options-open') ) {
|
|
|
|
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
|
|
|
|
$(this).removeClass('screen-options-open');
|
|
|
|
} else {
|
|
|
|
$('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
|
|
|
|
$(this).addClass('screen-options-open');
|
|
|
|
}
|
2008-10-01 21:32:27 -04:00
|
|
|
});
|
2008-09-25 21:05:52 -04:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|