//ブラウザウインドウを開く
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//商品購入リンク
function buyItem(itemid) {
	if(itemid.length) {
		shoplink = "https://www.shopmaker.jp/l_pro/sh016891/order.cgi?user=sh016891&number="+itemid;
		document.location.href=shoplink;
	}
}

//jqueryでイメージを入れ替えるやつ
//hoverでアニメーションさせると動作が不安定なので諦めた
$(function() {
	$(".small a").hover(function() {
		$(".big img", $(this).parent().parent()).attr("src", $(this).attr("href"));
		return false;
	});
});
$(function() {
	$(".small a").click(function() {
		return false;
	});
});

//詳しい内容をアコーデオン表示
$(function() {
	$("dd").css("display","none");
	$("dl dt span.less").css("display","none");
	$("dl dt span.more").click(function() {
		$("+span", this).css("display","inline");
		$(this).css("display","none");
		$("+dd", $(this).parent()).slideDown(100);
		return false;
	});
	$("dl dt span.less").click(function() {
		$("span:first-child", $(this).parent()).css("display","inline");
		$(this).css("display","none");
		$("+dd", $(this).parent()).slideUp(100);
		return false;
	});
});

//イメージをランダム表示
function randomImg() {
	imgNum=2;
	r = Math.floor(Math.random()* imgNum)+1;
	document.write("<a href='caramel.html'><img src='img/topimg"+r+".png' alt='キャラメルのご購入はこちらから' width='675' height='250' border='0' class='top_image' /></a>");
}
