//=============================================================================================================
// マウスオーバー
//=============================================================================================================
$(function(){
	$("#search .over01")
	.mouseover(function(){$(this).attr("src","http://tanglewood.japro.jp/images/he_search_btn_over.gif");})
	.mouseout(function(){$(this).attr("src","http://tanglewood.japro.jp/images/he_search_btn.gif");});
});


//=============================================================================================================
// 透明効果
//=============================================================================================================
$(document).ready(function () {
    $(".toumei img, img.toumei").hover(function () {
        $(this).fadeTo(0, 0.8);
    }, function () {
        $(this).fadeTo(0, 1.0);
    });
});


//=============================================================================================================
// 自動マウスオーバー
//=============================================================================================================
$(function(){
	$("img.over, .over img ").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_over$2"));
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_over(\.[a-z]+)$/, "$1$2"));
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_over$2"));
	});
});
