// スクロールメニュー
$( document ).ready( function (){
$('#scrollMenu').scrollFollow({
speed: 500,
offset: -20,
container: 'owp'
});
});

// フェード
$(function(){
var targetImgs = $('img');
targetImgs.each(function(){
if(this.src.match('_off')){
this.rollOverImg = new Image();
this.rollOverImg.src = this.getAttribute("src").replace("_off", "_on");
$(this.rollOverImg).css({position: 'absolute', opacity: 0});
$(this).before(this.rollOverImg);
$(this.rollOverImg).hover(function(){
$(this).animate({opacity: 1}, {duration: 500, queue: false});
},
function(){
$(this).animate({opacity: 0}, {duration: 500, queue: false});
});
}
});
});

