$(document).ready(function (){

	$(".WEB_CONTE_imagenIndecopi").pngfix();
	$(".MAQ_CONTE_piePagina").pngfix();

	$(".WEB_CONTE_desplegableInterno1").filter(function(e){

		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_desplegableInterno1_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_desplegableInterno1";
			$(this).children("div").hide();
		})
		
	})
	
	$(".WEB_CONTE_desplegableInterno2").filter(function(e){

		$(this).bind("mouseover",function(){
			this.className="WEB_CONTE_desplegableInterno2_on";
			$(this).children("div").show();
		})
		
		$(this).bind("mouseout",function(){
			this.className="WEB_CONTE_desplegableInterno2";
			$(this).children("div").hide();
		})
		
	})
	



});
