$(function() {
	adjustContentHeight();
	setVideoPopup();
});

function adjustContentHeight() {
	var height = 0;
	$("#header, #banner, #navigation, #main, #footer, #copyright_footer").each(function(index, element) { height += $(this).outerHeight(); });
	var height_diff = $(window).height() - height;
	if (height_diff > 0) {
		$("#content").height($("#content").height() + height_diff);
	}	
}

function setVideoPopup() {
	$("#demo_link").colorbox({
		iframe: true,
		width: "460",
		height: "362"
	});
}

function showPopupOnce(image_path) {
	var cookieName = image_path.replace(/[^a-z0-9]/gi, "");
	if (!$.cookie(cookieName)) {
		$.colorbox({
			iframe: true,
			width: "845",
			height: "430",
			href: image_path
		});
		$.cookie(cookieName, 1, {
			expires: 30,
			path: "/",
			domain: ".golfmetropolitainanjou.com"
		});
	}
}
