2008-09-26 03:05:52 +02:00
|
|
|
jQuery(document).ready( function($) {
|
2008-09-28 06:11:27 +02:00
|
|
|
$('#show-settings-link').click(function () {
|
2008-11-01 03:52:43 +01: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-02 03:32:27 +02:00
|
|
|
});
|
2008-09-26 03:05:52 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|