//	<script src="/js/jquey.rollover.js" type="text/javascript"></script>
//
//	ファイル名の拡張子の前に _off という名前で設定すると、
//	_on に自動的にロールオーバーする。  
//
//	<a href="/"><img src="/img/menu_off.gif" alt="HOME" /></a>  
//	→ 自動的に menu_on.gif にロールオーバー！！！
//
//



$(function(){
	$('img:not(.no_rollover),input:image:not(.no_rollover)').each(function(){
		var src = $(this).attr('src');
		
		if(src.match(/_off\./)){
			$(this).mouseover(function(){
				$(this).attr('src',src.replace(/_off\./,'_on.'));
			});
			$(this).mouseout(function(){
				$(this).attr('src',src);
			});
		}
	});
});

