
//jQuery.noConflict();
        
jQuery(document).ready(function(){
	jQuery("div.WEB_CONTE_enlaceBuscador").bind("mouseover", function(){
		jQuery("div.WEB_CONTE_enlaceBuscador").css({"text-decoration":	"underline", "color":"#bbe2f7"})
	})
	jQuery("div.WEB_CONTE_enlaceBuscador").bind("mouseout", function(){
		jQuery("div.WEB_CONTE_enlaceBuscador").css({"text-decoration":"none"})
	})
	jQuery("div.WEB_CONTE_enlaceBuscador").bind("click", function(){
		if (jQuery("div.WEB_CONTE_buscador:first").is(":hidden")) {
			jQuery("div.WEB_CONTE_buscador").slideDown("slow");
		} else {
			jQuery("div.WEB_CONTE_buscador").slideUp("fast");
		}
	})
	jQuery("div.WEB_CONTE_enlaceRecomendar").bind("mouseover", function(){
		jQuery("div.WEB_CONTE_enlaceRecomendar").css({"text-decoration":	"underline", "color":"#0053ac"})
	})
	jQuery("div.WEB_CONTE_enlaceRecomendar").bind("mouseout", function(){
		jQuery("div.WEB_CONTE_enlaceRecomendar").css({"text-decoration":"none"})
	})
	
	jQuery("div.WEB_CONTE_enlaceFavoritos").bind("mouseover", function(){
		jQuery("div.WEB_CONTE_enlaceFavoritos").css({"text-decoration":	"underline", "color":"#0053ac"})
	})
	jQuery("div.WEB_CONTE_enlaceFavoritos").bind("mouseout", function(){
		jQuery("div.WEB_CONTE_enlaceFavoritos").css({"text-decoration":"none"})
	})
	jQuery("div.WEB_MAQUE_f3_c2").pngFix(); 
});
