	
/* Galeria Index */ 
function siguiente_foto(total_imagenes){
	maxima = ((total_imagenes-2)*600)*-1;
	if(parseInt($("#galeria_total").css("left")) > parseInt(maxima)){
	$("#galeria_total").animate({"left": "-=600px"}, "slow");
	}
}

function foto_anterior(){
	if(parseInt($("#galeria_total").css("left"))< 0){
	$("#galeria_total").animate({"left": "+=600px"}, "slow");
	}
} 

jQuery(document).ready(function(){
	Shadowbox.init();
});


function abreShadow() {

    
	Shadowbox.init();
	$('#enlace').click();
			
}
