function estiloOn(which, estilo){
	//alert (estilo);
	if (document.all||document.getElementById){
	which.className= estilo;
	}
}
function estiloOff(which, estilo){
	if (document.all||document.getElementById){
	which.className= estilo;
	}
}

jQuery(document).ready(function() {
 jQuery("#divGaleria img, #pieGaleria img").mouseover(function () {
	  jQuery(this).animate({ 
        opacity: 0.4
      }, 500 );
    }).mouseout(function () {
	  jQuery(this).animate({ 
        opacity: 1
      }, 500 );
    });
 });

