/* Event onLoad */
$(document).ready(function(){
	
	/* ローカルナビのマウスオーバー */
	rollOver();
	
});






function rollOver(){
	var postfix = '_o';
	$('img.o').not('[src*="'+postfix+'."]').each(
		function(){
			var src_org = $(this).attr('src');
			var src_ovr = src_org.substr(0,src_org.lastIndexOf('.')) + postfix + src_org.substr(src_org.lastIndexOf('.'));
			$('<img>').attr('src', src_ovr);
			$(this).hover(
				function(){
					$(this).attr('src',src_ovr);
				},
				function(){
					$(this).attr('src',src_org);
				}
			);
		}
	);
}

