$(document).ready(function(){ 
	
	$(".area").hover(function(){
		$(this).children('.popout').addClass("over");
	},function(){
		$(this).children('.popout').removeClass("over");
	});
	
	
	
	
});
