// var $ = jQuery.noConflict();

function DoLoop1() {
	$('#background-header').animate(
		{backgroundPosition: "(-830px 0)"},  
		2500, 'swing', Delay1 );
}

function Delay1() {
	setTimeout("DoLoop2()", 13000)
}

function DoLoop2() {
	$('#background-header').animate(
		{backgroundPosition: "(-1660px 0)"},  
		2500, 'swing', Delay2 );
}

function Delay2() {
	$('#background-header').css(
		{backgroundPosition: "0 0"});
	setTimeout("DoLoop1()", 13000)
}

$(document).ready(function(){						   	
//		$(function(){
		 Delay2()
	 })


