$(function() {
	//ボタンロールオーバー
        var postfix = '_on'; 
        $('.btn_on a img').not('[src*="'+ postfix +'."]').not("[src*='_on.']").each(function() { 
             var img = $(this); 
             var src = img.attr('src'); 
             var src_on = src.substr(0, src.lastIndexOf('.')) + postfix + src.substring(src.lastIndexOf('.')); 
        $('<img>').attr('src', src_on); 
             img.hover(function() { 
                  img.attr('src', src_on); 
             },function() { 
                  img.attr('src', src); 
             }); 
        });
})
//lightBox
$(function(){
			$("area[rel='spot']").colorbox();
})
/*
//ギャラリー
$(function(){
	$("#gallery_thumb a").click(function(){
		$("#gallery_main img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("#gallery_main img:last").fadeOut(1000,function(){
			$(this).remove()
		});
		return false;
	})
})
*/
