/****************************************
[jquery] jquery.smartrollover.js
*****************************************
* Copyright (C) 2010 Naoya HIGASHI
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*****************************************
* ファイル名の最後に「_off」がついた<img>要素をマウスオーバーします。
* ファイル名の最後に「_on」がついた画像が必要です。
* ファイル名の最後に「_off」がついた<img>要素でも、「class="NoEffect"」を指定した画像はマウスオーバーしません。
****************************************/

$(document).ready(function(){
$('[src*="_off."]').not("[class='NoEffect']")
.mouseover(function(){$(this).attr("src",$(this).attr("src").replace(/^(.+)_off(\.[a-z]+)$/,"$1_on$2"));})
.mouseout(function(){$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/,"$1_off$2"));})
.each(function(init){$("<img>").attr("src",$(this).attr("src").replace(/^(.+)_off(\.[a-z]+)$/,"$1_on$2"));})
});

jQuery(document).ready(function(){
$(".alpha").hover(
function(){$(this).children("img").animate({opacity:0.7},100);},
function(){$(this).children("img").animate({opacity:1},100);}
);
});
