var $j = jQuery.noConflict();

$j(document).ready(function(){
		
 //// Parallax background script 

	$j(function(){
		
		  $j('#midground').css({backgroundPosition: '0px 0px'});
		  $j('#foreground').css({backgroundPosition: '-100px 0px'});
		  $j('#background').css({backgroundPosition: '0px 0px'});
		
		
			$j('#midground').animate({
				backgroundPosition:"(-10000px 0px)"
			}, 340000, 'linear');
			$j('#foreground').animate({
				backgroundPosition:"(20000px 0px)"
			}, 500000, 'linear');
			
			$j('#background').animate({
				backgroundPosition:"(-40000px 0px)"
			}, 2500000, 'linear');
		
			
			});




});