jQuery(document).ready(function(){

	jQuery("#searchbutton").hover(
	      function () {
	        	jQuery("#searchbar").fadeIn("slow");
	      }, 
	      function () {}
	    );

	jQuery("#postacomment").click(function(){	 	
		jQuery("#comment-form").slideToggle("slow");				
	});
	
	jQuery("#slidebarToggle").click(function(){	 	
		jQuery("#slidebar").slideToggle("fast");				
	});	
	
});

