// JavaScript Document
(function($){
$(function()
{
	// ホバーボタン
	$('.hover, .hover_list a img, .hover_list input[type="image"],.photo a img').hover(function(){
		$(this).fadeTo(300, 0.6);
	},
	function(){
		$(this).fadeTo(300, 1);
	});
	
	//ON/OFFボタン
	$("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^=#]").click(function(){
		$.scrollTo( $($(this).attr('href').toString()), 800,{});
		return false;
	});
	
	$("div.charactor_nights").pngFix();
	$("div.charactor_kon").pngFix();
	$("div.charactor_garopa").pngFix();
});
})(jQuery);
