/*
 * jQuery WLS Greasemonkey Sidebar v1.0 - http://wls.nullpointer.at
 *
*/

  
  $(document).ready(   function(){
  
      $('div#gm_main').hide();
      $('div#gm_icon').show().click(function(){
        $(this).hide();
        $('div#gm_main').fadeIn('slow');
	$('p#gm_text').hide();
      });
      $('p#gm_text').show().click(function(){
        $(this).hide();
	$('div#gm_icon').hide();
        $('div#gm_main').fadeIn('slow');
      });
  });

