var Changing = false;
var theImage = 2;
var buttonPos = 103;
  
function SwapImage() {
	Changing = true;
	$('#button').animate({
		top : (103 + (35 * (theImage - 1)))
	}, 1000);
	$('#overlay').animate({
		left : '-398'
	}, 500, function() {
			document.getElementById('overlay_image').src = "/images/home/" + theImage + ".png";
			$('#overlay').animate({
				left : '0'
			}, 500);
		});
	$('#text_image').fadeOut(500, function() {
		document.getElementById('text_image').src = "/images/home/" + theImage + "t.jpg";
		$('#text_image').fadeIn(500);
	});
	$('#background_1').fadeOut(1000, function() {
		document.getElementById('background_image_1').src = document.getElementById('background_image_2').src;
		$('#background_1').fadeIn(0);
		if(theImage == 4) {
			theImage = 1;			
		} else {
			theImage = theImage + 1;
		}
		document.getElementById('background_image_2').src = "/images/home/" + theImage + ".jpg";
		Changing = false;
		setTimeout('SwapImage();', 4000);
	});		
}

linkArray = new Array();
linkArray[0] = "/viking/coffee-maker-p215838";
linkArray[1] = "/stand-mixers";
linkArray[2] = "/cookware";
linkArray[3] = "/toasters";

function FollowLink() {
	if(Changing == false) {
		if(theImage == 1) {
			window.location = linkArray[3];
		} else {
			window.location = linkArray[theImage - 2];
		}
	}	
}
