$(function(){
	
//#pageTopをクリックするとページの先頭へ行く
	$(".pagetop a").click(function(){
		$(".pagetop a").attr("href","javascript:void(0)");
		$("html,body").animate({scrollTop:0},"slow");
	});

//hover時のon/off切り替え
	$('img,input').hover(
		function(){
        $(this).attr('src',$(this).attr('src').replace(/^(.+)_off(\.[a-z]+)$/, "$1_on$2"));
    },
		function(){
        $(this).attr('src',$(this).attr('src').replace(/^(.+)_on(\.[a-z]+)$/, "$1_off$2"));
		});
	
//hover時アニメーション
	
	$('#sub .subMenu a,#sub .subContact a,#sub .news a,#sub .demo_side a,#sub .subsubMenu a,#main a,#footer a,.more a,.demo').hover(
		function(){
			$(this).fadeTo("normal", 0.7)}
		,function(){
			$(this).fadeTo("normal", 1)}	
	)









})
