
jQuery(document).ready(function() {
	if(jQuery.browser.version == '6.0') return;
	goleft();
});

function goleft(){

	jQuery('#head3').animate({
		backgroundPositionX: -270
		}, 22000, function(){ goright(); }
	);
}
function goright(){

	jQuery('#head3').animate({
		backgroundPositionX: 270
		}, 22000, function(){ goleft(); }
	);
}
