jQuery(function($) 
{ 
  $('#guide div.description').hide();
  $('#guide h3').addClass('link');
  if(/MSIE [6]/.test(navigator.userAgent))
  {
	$('#guide h3').click(function(){
    	$(this).next('div.description').toggle();
  	});  
  }
  else
  {
	  $('#guide h3').toggle(
			function(){$(this).next('div.description').show('normal'); $(this).addClass('up')}, 
			function(){$(this).next('div.description').hide('normal'); $(this).removeClass('up')
	  });
  }
}); 
