//ロールオーバー
$(document).ready(function(){
	$("img[src*='_on']").addClass("current");
	
	$("img,input").mouseover(function(){
		if ($(this).attr("src")){
			$(this).attr("src",$(this).attr("src").replace("_off.", "_on."));
		}
	});

	$("img[class!='current'],input").mouseout(function(){
			if ($(this).attr("src")){
				$(this).attr("src",$(this).attr("src").replace("_on.", "_off."));
			}
	});

//外部リンクを新規ウィンドウでオープン
	
	$("a[@href^=http]").click(function(){
		window.open(this.href,"_blank");
		return false;
	});

});


$(document).ready(function(){
	var myAgent = navigator.userAgent;
	if(myAgent.indexOf("MSIE 6.0") == -1) {
		$("a[href^=#]").click(function(){
			$.scrollTo( $($(this).attr('href').toString()), 800,{});
			return false;
		});
	}

});