$(function(){
											
				/**
					* メニューロールオーバー
					*/
				$('img[@ref=over]').hover(
								function(){  
												this.src = this.src.replace(/^(.+).(gif|jpe?g|png)$/, "$1_on.$2");  
								},
								function(){
												this.src = this.src.replace(/^(.+)_on.(gif|jpe?g|png)$/, "$1.$2");  
								}
				);
				
				
				/**
				 * ページトップへ
					*/
				$('#pagetop a').click(
				    function(){
												//$.scrollTo("body", 500);
												$.scrollTo( 'body', {duration:500}  );
								}				
				);
				
				
				
});