			var scrollSpeed = 80; 
			var step = 1; 
			var current = 0;
			var imageWidth = 3300;		
			var headerWidth = 1010;	
			var restartPosition = -(imageWidth - headerWidth);
			
			var scrollSpeed2 = 60; 		
			var step2 = 1; 				
			var current2 = 0;			
			var imageWidth2 = 3300;
			var headerWidth2 = 1010;		
			var restartPosition2 = -(imageWidth2 - headerWidth2);
			
			var scrollSpeed3 = 50; 	
			var step3 = -1; 				
			var current3 = -2000;		
			var imageWidth3 = 2000;	
			var headerWidth3 = 1010;
			var restartPosition3 = +(imageWidth3 + headerWidth3);
			
			
			function scrollBg(div){
				//Go to next pixel row.
				current -= step;
				
				//If at the end of the image, then go to the top.
				if (current == restartPosition){
					current = 0;
				}
				//$('p.1').html('bg3: '+current+' Loop: '+restartPosition);
				//Set the CSS of the header.
				$(div).css("background-position",current+"px 0");
			}
			setInterval("scrollBg('#bg3')", scrollSpeed);
			
			
			
			function scrollBg2(div){
				current2 -= step2;
				if (current2 == restartPosition2){
					current2 = 0;
				}
				//$('p.2').html('bg1: '+current2+' Loop: '+restartPosition2);
				$(div).css("background-position",current2+"px 0");
			}
			
			setInterval("scrollBg2('#bg1')", scrollSpeed2);
			 
			 
			function scrollBg3(div){
				current3 -= step3;
				
				if (current3 == 0){
					current3 = -2000;
				}
				//$('p.3').html('bg2: '+current3+' Loop: '+restartPosition3+' Start: '+step3);
				$(div).css("background-position",current3+"px 0");
			}
			setInterval("scrollBg3('#bg2')", scrollSpeed3);
