$(document).ready(function(){
	// Setup the item's initial values
	var gallerySize = 4;
	var rotateTimer = 3300;
	var itemWidth = 233;
	
	$("#home-links a:gt("+(gallerySize - 1)+")").hide().css('width',0);
	$("#home-links a:last-child").insertBefore(".wrapper div:first-child").css('width',0);
	var loopTimer = window.setInterval(runSlider, rotateTimer);
	
	// Define function to execute every "x" seconds
	function runSlider(){
		$("#home-links a:first-child").css('marginRight',10).animate({"width":itemWidth}, 1000);
		$("#home-links a:nth-child(5)").css('marginRight',0).animate({width:0}, 1000).hide(function(){
			$("#home-links a:last-child").insertBefore("#home-links a:first-child");
		});
	}
});	