$(document).ready(function(){

	window.setInterval("featureRotate()",5000);
//	preDownloadImages();
	
	$(".homeFeatureOff").css("display","none");
	
	$("#homeMainLinkPink").hover(
		function(){
			$(this).children("img").attr("src","/images/global/circle-white.gif");
		},
		function(){
			$(this).children("img").attr("src","/images/global/circle-pink.gif");
	});
	
	$("#homeMainLinkGreen").hover(
		function(){
			$(this).children("img").attr("src","/images/global/circle-white.gif");
		},
		function(){
			$(this).children("img").attr("src","/images/global/circle-green.gif");
	});
	
	$("#homeMainLinkBlue").hover(
		function(){
			$(this).children("img").attr("src","/images/global/circle-white.gif");
		},
		function(){
			$(this).children("img").attr("src","/images/global/circle-blue.gif");
	});

});


