/* ロールオーバー
------------------------------------------*/
$(function(){
$(".rollover img, .pagetop img").mouseover(function(){
$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
}).mouseout(function(){
$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
}).each(function(){
$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
})
})


/* スムーススクロール 
------------------------------------------*/
$(function(){
$('a[href*=#]').click(function() {
var $target=$(this.hash);
var targetY=$target.offset().top;
$($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body').animate({scrollTop: targetY},500);return false;
});
});
