$(function(){
	$('.H-Navi a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -57px)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:200})
		})
		$('.H-Navi li.Now a')
		.css( {backgroundPosition: "0 -57px"})
		.mouseout(function(){
			$('.H-Navi li.Now a').stop()
		})
		
	$(".Help").jscroll({ W:"15px"
		,BgUrl:"url(images/s_bg.gif)"
		,Bg:"right 0 repeat-y"
		,Bar:{Pos:"up"
			 ,Bd:{}
			 ,Bg:{Out:"-45px 0 repeat-y",Hover:"-60px 0 repeat-y",Focus:"-60px 0 repeat-y"}}
		,Btn:{btn:false
			 ,uBg:{Out:"0 0",Hover:"-15px 0",Focus:"-30px 0"}
			 ,dBg:{Out:"0 -15px",Hover:"-15px -15px",Focus:"-30px -15px"}}
		,Fn:function(){}
		});

		
});
