// JavaScript Document

$(function(){
    $("#main_menu a,#sub_menu a").blend();
});


jQuery(document).ready(function($) {
	var postfix = '_on';
	$('.page_top_wide a img,.page_top_750 a img,.job_form a img,.kakunin .btn,#shop_list li a img,.on_img').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});





