/**---------------------------------------------------
 * class ashWeb
  ---------------------------------------------------*/
AshWeb = function()
{


}

//初期化
AshWeb.prototype.init = function()
{
	$("#header_menu .bt").each(function(){

		//画像を事前に読み込む
		var src = $(this).attr("src");
		var upImg = new Image(100, 100);
		upImg.src = src;
		var overImg = new Image(100, 100);
		overImg.src = src.replace("_up.gif", "_over.gif");

		$(this).hover(
			function(){

				$(this).attr("src", overImg.src);
			},
			function(){

				$(this).attr("src", upImg.src);
			}
		);

	});

	//事業内容オーバーアクション
	$("#business_bt").hover(
		function(){

			$("#business_menu_win").show();

		},
		function(){}
	);

	//事業内容ウインドウオーバーアウトアクション
	$("#business_menu_win").hover(
		function(){},
		function(){

			$(this).hide();
		}
	);

}

//ページ毎の初期化
AshWeb.prototype.page_init = function(){}


