$(window).load(function(){
						
	if(jQuery.browser.msie && (parseInt(jQuery.browser.version) >=7)) {
		
		// set the initial position of the background.
		$('#scroller').css({'backgroundPosition': '514px 6px'});		
		
		var c = 0;
		var t = $.timer(5000, function(timer) {
			if(c==3) {
				$('#scroller').css({'background-position': '514px'});	
				c = 0;
			}
			$('#scroller').animate({'backgroundPosition': '-=430px'}, 1500);
			c++;
		});
		
		$('#nav > ul').Accordion({
			active: '.selected',						  
			alwaysOpen: false
		});
		
	}
						
	// Animate the images
	if (!jQuery.browser.msie) {
		
		// set the initial position of the background.
		$('#scroller').css({'backgroundPosition': '636px 6px'});		
		
		var c = 0;
		var t = $.timer(5000, function(timer) {
			if(c==3) {
				$('#scroller').css({'background-position': '636px'});	
				c = 0;
			}
			$('#scroller').animate({'backgroundPosition': '-=430px'}, 1500);
			c++;
		});
		
		$('#nav > ul').Accordion({
			active: '.selected',						  
			alwaysOpen: false
		});
			
	}

});
