$(document).ready(function(){
	$('#tagline').innerfade({
		animationtype: 'fade',
		speed: 750,
		timeout: 13000,
		type: 'random_start'
	});
	
	// Get random image and start image rotation
	var i = Math.floor(Math.random()*7);
	$('#antique-images img:nth(' + i + ')').fadeIn(800).addClass('current');
    var t = setTimeout("timedRotation()",8000);   

});

// Timed Image Rotation
function timedRotation () {
if($('#antique-images img.current').hasClass('last')){
		nextBlock = $('#antique-images img:first');
		nextBlockSrc = $('#antique-images img:first').attr('src');
	} else {
		nextBlock = $('#antique-images img.current').next();
		nextBlockSrc = $('#antique-images img.current').next().attr('src');
	}
	$('#antique-images img.current').fadeOut(800);
	$('#antique-images').css({'background-image':'url(' + nextBlockSrc + ')'});
	nextBlock.show();
	
	$('#antique-images img.current').removeClass('current');
	nextBlock.addClass('current');

	var t2 = setTimeout("timedRotation()",8000); 
}