$(function (){

	$(".WEB_CONTE_informacionArea").filter(function(e){
		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_informacionArea_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_informacionArea";
			$(this).children("div").hide();
		})
		
	})
	
	
});

