$(function() {	
	// 商品スクロール
	$(".scrollable").scrollable();

	// 音楽再生
	$("#player").jPlayer({
		ready: function() {
			$(this).jPlayer("setMedia", {
				mp3: "sound/by_yoshida.mp3"
			}).jPlayer("play");
		},
		swfPath: "flash",
		"backgroundColor": "#RRGGBB",
		ended: function (event) {
  			$(this).jPlayer('play');  /* 再生する */
		}
	});

	$("#play").click(function() {
		$("#player").jPlayer("play");
		return false;
	});
	
	$("#stop").click(function() {
		$("#player").jPlayer("stop");
		return false;
	});

	// 画像ポップアップ
	$('.topcontents-eventbig a').lightBox();
});
