/*
 * ==========================================================================
 * 
 * javascript for 季菜口
 * 
 * ==========================================================================
 */
$(function() {
/**
 * rollover
 */
	var imgCache;
	
	$(".roImg").hover(function() {
		var imgSrc 			= $(this).attr("src");
		var imgSrcDot 		= imgSrc.lastIndexOf('.');
		var imgSrcOver 		= imgSrc.substr(0, imgSrcDot) + '_on' + imgSrc.substr(imgSrcDot, 4);
		
		imgCache = imgSrc;
		$(this).attr("src", imgSrcOver);
	}, function() {
		$(this).attr("src", imgCache);
	});
/**
 * global navi
 */
	jQuery.preimg(
		"../images/global/menu01new_on.gif", 
		"../images/global/menu02new_on.gif", 
		"../images/global/menu03new_on.gif", 
		"../images/global/menu04new_on.gif", 
		"../images/global/menu05new_on.gif", 
		"../images/global/menu06new_on.gif"
	);
});
/**
 * preload
 */
jQuery.preimg = function() {
	for(var i = 0; i < arguments.length; i++) {
		$("<img>").attr("src", arguments[i]);
	}
};
/**
 * toggle
 */
function kisako_toggle(vox) {
	$(document).ready(function(){
		$('#' + vox + '').slideToggle('normal');
	});
}
