// Index JS

var bgPos = 0;
try {
document.execCommand("BackgroundImageCache", false, true);
} catch(err) {};

jQuery(function($){

	// Initialization Functions 
	
	$('.go_fresh_logo').flash({swf: '/flash/gofresh_logo.swf',width: 244, height: 130, params: {wmode:'transparent'}});
	animateBG();
	
	if ($('#slide2').length) {
		setInterval('doSlide()',4500);
	}
	
});

function doSlide() {
	if ($('#slide2').is(':hidden')) {
		$('#slide1').fadeOut('slow');
		$('#slide2').fadeIn('slow');
	} else {
		$('#slide2').fadeOut('slow');
		$('#slide1').fadeIn('slow');
	}
}

function animateBG() {
	bgPos = (bgPos-300);
	$('.container').animate({backgroundPosition: bgPos+"px 0px"},13000,"linear",function(){animateBG();});
}
