var imagenes=new Array();
var j=0;
var tiempoEspera = 6000;

$(document).ready(function() {
	
	$('#imgs').hide();
	
	var i=0;
	var temp;
	
	imagenes[i]=$('.imagen').attr('src');
	
	$('#imgs li a').each(function(){
		i++;
		imagenes[i]=$(this).attr('href');
	});
	
	temp=setTimeout("cambiar()",tiempoEspera);
});

function cambiar()
{
	j++;
	if (j>=imagenes.length)
		j=0;
	
	$('#imagenes img').each(function() { $(this).fadeOut(900, function() { $(this).remove(); }) });
	
	$('#imagenes').append('<img src="'+imagenes[j]+'" alt="zapatos de mujer" title="calzado de mujer" class="imagen" width="600" height="401" style="display:none;" onload="$(this).fadeIn(900);temp=setTimeout(\'cambiar()\', tiempoEspera)" />');
}