			var scrollSpeed2 = 120; 		// Speed in milliseconds
			var step2 = 1; 				// How many pixels to move per step
			var current2 = 0;			// The current pixel row
			var imageHeight2 = 4300;		// Background image height
			var headerHeight2 = 300;		// How tall the header is.
			
			//The pixel row where to start a new loop
			var restartPosition2 = -(imageHeight2 - headerHeight2);
			
			function scrollBg2(){
				
				//Go to next pixel row.
				current2 += step2;
				
				//If at the end of the image, then go to the top.
				if (current2 == restartPosition2){
					current2 = 0;
				}
				
				//Set the CSS of the header.
				$('.bg-animated-2').css("background-position",current2+"px bottom");
				
				
			}
			
			
			//Calls the scrolling function repeatedly
			var init = setInterval("scrollBg2()", scrollSpeed2);
