$(function(){  

$(".rollover").hover(function(){  
		$(this).children(".hover").show();  
		$(this).children(".no_hover").hide();  
	}, function(){  
		$(this).children(".hover").hide();  
		$(this).children(".no_hover").show();  
})
});  
