$(document).ready(function(){
	
	$("div[class^=WEB_boton]").filter(function(){
		
		$(this).bind("mouseover",function(){
			this.className=this.className+"_on";
		})
		
		$(this).bind("mouseout",function(){
			this.className=this.className.substring(0,(this.className.length-3))
		})

	})


	
	$("div[class^=WEB_CONTE_noticia]").filter(function(){
		
		$(this).bind("mouseover",function(){
				$(this).children("div.WEB_tituloNoticia").css({color:"#7f92b1"});
				$(this).children("div.WEB_fechaNoticia").css({color:"#7f92b1"});
		})
		
		$(this).bind("mouseout",function(){
				$(this).children("div.WEB_tituloNoticia").css({color:"#002663"});
				$(this).children("div.WEB_fechaNoticia").css({ color: "#002663" });
		})

	})



})
//