/* -------------------------------------------------------------------
	* 共通関数実行
	* init
 ------------------------------------------------------------------- */
$(function() {
	/* set topTooltip */
	$().topTooltip();
});
/* -------------------------------------------------------------------
	* 共通関数定義
	* @function
 ------------------------------------------------------------------- */
(function($){
	/*
	 * トップページ向けツールチップ
	 * @function
	 */
	 	//初期状態画像設定
		var toolTipBaseImage = "/images/index_il001.gif"; 
		//ロールオーバーランダム画像定義
		jmp = new Array();
		jmp[0] = "/images/index_il001on1.gif";
		jmp[1] = "/images/index_il001on2.gif";
		jmp[2] = "/images/index_il001on3.gif";
		jmp[3] = "/images/index_il001on5.gif";
		jmp[4] = "/images/index_il001on5.gif";
		//Engine
		$.fn.topTooltip	= function(){
			$("#recipeIllust").hover(
				function () {
					n = Math.floor(Math.random()*jmp.length);
					$(this).attr({ src: jmp[n] });
				},
				function () {
					n = Math.floor(Math.random()*jmp.length);
					$(this).attr({ src: toolTipBaseImage });
				}
			);
		}
})(jQuery)
