function nextFoto(foto){

	$("img.imagen").fadeOut("slow", function () {
							$("#contenedor_foto").css({'background-color' : 'white'});
							$("#contenedor_foto").html("<table  align='center' style='padding-top: 100px;'><tr><td><img class='cargador' src='images/loading.gif' width='264' height='254' /></td></tr><tr><td align='center'>Loading...</td></tr></table>");
							var par="foto_actual="+foto;
							$.get('index.php?modulo=galeria&accion=sig_foto&ajax=1', par, respuestaFoto);
							});

}

function prevFoto(foto){

	$("img.imagen").fadeOut("slow", function () {
							$("#contenedor_foto").css({'background-color' : 'white'});
							$("#contenedor_foto").html("<table  align='center' style='padding-top: 100px;'><tr><td><img class='cargador' src='images/loading.gif' width='264' height='254' /></td></tr><tr><td align='center'>Loading...</td></tr></table>");
							var par="foto_actual="+foto;
							$.get('index.php?modulo=galeria&accion=ant_foto&ajax=1', par, respuestaFoto);
							});

}

function respuestaFoto(response){
	$("#general_fotos").html(response);
	
	$("img.cargador").fadeOut("fast", function () {
		$("#contenedor_foto").html($("#foto_oculta").html());
		$("#foto_oculta").html("");
		$("img.imagen").fadeIn("slow");
		});
	
	
	
}
