	// 																										
	// -----------------------------------------------------												
	// FUNCTION InitSpecial																					
	// -----------------------------------------------------												
	// 											 															
	mb = "";
	
	function InitSpecial() {
		//alert(document.getElementsByTagName("body")[0].style.backgroundColor);
		//alert(document.body.style.backgroundColor);
		
		mb = setInterval("MoveBackground()", 50);
		GetPageDimensions();
		
		window.onresize = ResetBackground;
	}	
	
	// 																										
	// -----------------------------------------------------												
	// FUNCTION MoveBackground																				
	// -----------------------------------------------------												
	// 											 															
	backgr_xpos 		= 0;
	backgr_direction 	= 0;
	backgr_stepsize 	= 1;
	backgr_width 		= 2426;
	
	function MoveBackground() {
		if (backgr_xpos<0-(backgr_width-page_width) ) 	backgr_direction=1;
		if (backgr_xpos>0) 				backgr_direction=0;
		
		if (backgr_direction==0) backgr_xpos = backgr_xpos-backgr_stepsize;
		if (backgr_direction==1) backgr_xpos = backgr_xpos+backgr_stepsize;
		
		
		document.body.style.backgroundPosition = ""+backgr_xpos+"px 0px";
	}
	
	// 																										
	// -----------------------------------------------------												
	// FUNCTION ResetBackground																				
	// -----------------------------------------------------												
	// 											 															
	function ResetBackground() {
		backgr_xpos 		= 0;
		GetPageDimensions();
	}

	
	
	
