$(document).ready(function(){
						   
	function scroll_header(){
		$("div#sub_image").animate({backgroundPosition: "-=568px 0"}, 8000);
	}
	
	/*function scroll_header(){
		$("div#sub_image").hover(
			function(){
				$(this).mousemove(function(e){
					var myx = e.pageX - this.offsetLeft;
					if(myx >= 400){
						$(this).stop().animate({backgroundPosition : "-=40px 0px"}, 1000, "linear");
					}
					else{
						$(this).stop().animate({backgroundPosition : "+=40px 0px"}, 1000, "linear");
					}
				});
			},
			function(){
				$(this).stop();
			}
		);
	} */
	
	//scroll_header();
	
	
});