﻿/*--------------------------------
	Google Analytics
--------------------------------*/

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-11891997-1']);
_gaq.push(['_trackPageview']);

(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

/*--------------------------------
	価格表示
--------------------------------*/

$(function(){
	$(".regularPrice,.salePrice").each(function(){
		var price = $(this).text();
		price = price.replace(/,/g, "");					// 一旦カンマを全消去
		price = price.match(/\d+/)[0];						// 数字だけ抽出する
		price = price.replace(/(\d)(\d\d\d)$/g, "$1,$2");	// カンマ区切りを施す
		price = price.replace(/(\d)(\d\d\d,)/g, "$1,$2");	// カンマ区切りを施す
		price = price + "円";
		$(this).text(price);
	});
});

/*--------------------------------
	サムネイル画像にオリジナルへのリンクをつける
--------------------------------*/

$(function(){
	$("img.thumb")
		.css("cursor", "pointer")
		.bind("click", function(){
			$.fancybox({
				'href'			: this.src.replace(/(\/[^\/]*)$/m, "/origin$1"),
				'title'			: this.alt,
				'type'			: 'image',
				'titlePosition'	: 'inside',
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
			return false;
		})
	;
});

