var enabled = true;
var seconds = 6; // Live (6))

function jaguar() {

	$('div#home-riofive').fadeOut('slow');
	$('div#home-jaguar').fadeIn('slow');

	setTimeout("jermaine()", seconds * 1000);

}

function jermaine() {

	$('div#home-jaguar').fadeOut('slow');
	$('div#home-jermaine').fadeIn('slow');

	setTimeout("commercial()", seconds * 1000);

}

function commercial() {

	$('div#home-jermaine').fadeOut('slow');
	$('div#home-commercial').fadeIn('slow');

	setTimeout("fiveaside()", seconds * 1000);

}

function chanel() {

	$('div#home-commercial').fadeOut('slow');
	$('div#home-chanel').fadeIn('slow'); // Show this one.

	setTimeout("fiveaside()", seconds * 1000);

}

function fiveaside() {

	$('div#home-commercial').fadeOut('slow');
	$('div#home-fiveaside').fadeIn('slow'); // Show this one.

	setTimeout("riofive()", seconds * 1000);

}

function riofive() {

	$('div#home-fiveaside').fadeOut('slow');
	$('div#home-riofive').fadeIn('slow'); // Show this one.

	setTimeout("jaguar()", seconds * 1000);

}

$(document).ready(function() {

	$("div#home-rio").click(function () {
		// window.location = 'http://www.rioferdinand.com';
		window.open('http://www.rioferdinand.com');
	});

	if (enabled) {
		setTimeout("jermaine()", seconds * 1000);
	} else {
		$('div#home-jaguar').show();
		$('div#home-jermaine').show();
		$('div#home-commercial').show();
		//$('div#home-chanel').show();
		$('div#home-fiveaside').show();
	}

});