$(function(){
	autoslide();
});	

function autoslide() {
	var height = 825;
	var speed = 10500;
	if($('#photo .show img').height()==1280) {
		height = 1100;
		speed = 12000;
	}
	
	$('#photo .show img').animate({bottom: "+="+height}, speed, function(){
		$('#photo .show').animate({ opacity: 'hide' }, 700, function(){
			$('#photo .show img').css({'bottom' : '0'});
			$('#photo .show').removeClass('show').addClass('hide').next().addClass('show').removeClass('hide');
			if(!$('#photo div').is('.show')) 
				$('#photo div:first').addClass('show').removeClass('hide');
			$('#photo .show').animate({ opacity: 'show' }, 700);
			autoslide();
		});
	});
}

