
/*$(document).ready(function(){

	$(".hide").hide();
	
	$("h2").click(function(){
		$(this).next().fadeIn("slow")
	})
	
	$("h2").click(function(){
		$(this).next().fadeOut("fast")
	})
});
*/


$(document).ready(function(){

	$(".hide").hide();
	
	$(".over").mouseover(function(){
		$(this).next().fadeIn("fast")
	})
	
	$(".over").mouseout(function(){
		$(this).next().fadeOut("slow")
	})
});