$(document).ready(function(){
 
	$(".hide").hide();
	
	$("a.toggle").click(function(event){
		$(this).parents(".nov").find(".hide").toggle("fast");
		
		
 
		return false;
	}); 
 
   });







