var nextnum = -1;
var images = new Array(
	'/images/spain/photos/medium/the-front-view.jpg',
	'/images/spain/photos/medium/the-swimming-pool.jpg',
	'/images/spain/photos/medium/the-bathroom.jpg',
	'/images/spain/photos/medium/the-1st-bedroom.jpg',
	'/images/spain/photos/medium/the-2nd-bedroom.jpg',
	'/images/spain/photos/medium/the-kitchen.jpg',
	'/images/spain/photos/medium/the-lounge.jpg',
	'/images/spain/photos/medium/the-lounge-(reversed).jpg',
	'/images/spain/photos/medium/the-patio.jpg');
var imagetitles = new Array(
	'The Apartment',
	'Swimming Pool',
	'The Bathroom',
	'1st Bedroom',
	'2nd Bedroom',
	'The Kitchen',
	'The Lounge',
	'The Lounge again',
	'The Patio');
var imagehref = new Array(
	'/apartment.html',
	'/the-resort.html',
	'/apartment.html',
	'/apartment.html',
	'/apartment.html',
	'/apartment.html',
	'/apartment.html',
	'/apartment.html',
	'/apartment.html');

$(function(){
	$('#carousel').append( '<'+'img />' );
	$('#carouselContainer').append( '<'+'span><'+'/span>' );
	carousel();
	setTimeout("$('#carousel').css('display', 'block')",700);
	$('#carousel img').click(function(){
		if(imagehref[nextnum] != ''){location.href=imagehref[nextnum];}
	});
});

function carousel(){
	nextnum++;
	if(nextnum == images.length){nextnum = 0;}
	$('#carousel img').fadeTo(500,0);
	setTimeout("fadeIn()",700);
}

FT = '<table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="fancy_title_left"></td><td class="fancy_title_main"><div> ';
LT = ' </div></td><td class="fancy_title_right"></td></tr></tbody></table>';

function fadeIn(){
	$('#carousel img').attr('src', images[nextnum]);
	$('#carousel img').attr('alt', imagetitles[nextnum]);
	if(imagehref[nextnum] != ''){$('#carousel img').css('cursor','pointer');}
	$('#carouselContainer span').html( FT + imagetitles[nextnum] + LT );
	$('#carousel img').fadeTo(700,1);
	setTimeout("carousel()", 5000);
}
