$(document).ready(function(){
    
	  $("h3").click(function () {
		  if ($(this).next().is(':hidden')) {
			  $(this).unbind('mouseenter mouseleave');
			  $(this).css({color:"#826400"});
			  $(this).css({"font-weight":"bold"});
			}
		  else {
			  
			  $(this).hover( function(){
				  $(this).css({"color":"#826400","font-weight":"bold"});
				},
				function(){
					
					$(this).css({"font-weight":"normal","color":"#4c4c4c"});
				});
			
			}
		  
		  $(this).next().slideToggle("slow");
	    });
   
  });
