/* ready
----------------------------------------------- */
$(function() {

	// anchor
	$(".anchor").bind("click", anchor);
	
	// window open/close
	$(".coupon a").bind("click", windowOpen);
	$(".b_close a").bind("click", windowClose);

	// print
	$(".b_print a").bind("click", pagePrint);

});

/* anchor
----------------------------------------------- */
function anchor() {
	var url = $(this).attr("href");
	var pos = $(url).offset().top;
	$("html, body").animate({ scrollTop:pos }, 500, "easeInOutCubic");
	return false;
}

/* window open/close
-------------------------------------*/
function windowOpen() {
	var url = $(this).attr("href");
	var w = window.open(url, "WindowName","width=750,height=700,resizable=no,scrollbars=no");
	w.focus();
	return false;
}
function windowClose() {
	window.close();
	return false;
}

/* print
-------------------------------------*/
function pagePrint() {
	window.print();
	return false;
}


/* Google Analytics
-------------------------------------*/
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7069849-13']);
_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);
})();
