/*************************************************
  ショッピングバッグに商品を追加
*************************************************/
function sendShoppingBag (form_id) {
	if (form_id != null) {
		document.forms[form_id].submit();
	}
}

/*************************************************
  商品お知らせメール登録ウィンドウ表示
*************************************************/
function openInformsStock (url, itemCd) {
	var url   = url + '?informsItemCd=' + itemCd;
	//var name  = 'informs_stock';
	var name  = '';
	var style = 'width=468, height=440';
	win = window.open(url, name, style);
}

$(function(){
	
	$("ul > li a").hover(function(){
		$("img:visible",this).stop().fadeTo(200,0);
	},function(){
		$("img:visible",this).fadeTo(200,1);
	});
	
});

$(document).ready(function() {
	$("#Explain ul li a").click(function() {
		$($("#Explain ul li a.block").attr("title")).hide();
		$("#Explain ul li a.block").removeClass("block");
		$(this).addClass("block");
		$($(this).attr("title")).fadeIn("slow");
		return false;
	});
});