$(document).ready(function (){

	$(".WEB_CONTE_imagenIndecopi").pngfix();
	$(".MAQ_CONTE_piePagina").pngfix();

	$(".WEB_CONTE_desplegable1").filter(function(e){

		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_desplegable1_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_desplegable1";
			$(this).children("div").hide();
		})
		
	})
	
	$(".WEB_CONTE_desplegable2").filter(function(e){

		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_desplegable2_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_desplegable2";
			$(this).children("div").hide();
		})
		
	})
	



});
