

//GALERĶA INDEX

var anchoFoto;
$(document).ready(inicia);

function inicia(){
	anchoFoto = 740
	$('.galleryImageIndex').hover(entrarGalleria, salirGalleria)
}

function entrarGalleria(){
	$(this).find('img').stop().animate({ width: (anchoFoto/1.5)+"px", marginTop:"10px", marginLeft:"10px" }, 400)
	$(this).find('.infoIndex').stop().css({ width:"184px", height:"100%",position:"absolute", top:"0px", margin:"0px", left:"520px", background:"#000", opacity:"0.8"}, 5000)
	$(".galleryImageIndex").css("opacity", "0.5");
	$(this).css("opacity", "1");
}

function salirGalleria(){
	$(this).find('img').stop().animate({ width: anchoFoto+"px", marginTop:"0px", marginLeft:"0px" }, 400)
	$(".galleryImageIndex").css("opacity", "1");
	$(".infoIndex").css({opacity:"0"});

}





//
