$(function() {
	$("a[href*='#']").slideScroll({
		interval: 20,
		easing: 0.8
	});

	/* starcms以外のurlは別ウインドウで開く */
	var base = "starcms";
	$("a[href^='http']").not("[href*="+base+"]").click(function() {
		window.open($(this).attr("href"));
		return false;
	});
	
	/* お問い合わせ画面でのプライバシーポリシー別ウインドウ */
	$("a#contact_to_privacy").click(function() {
		window.open($(this).attr("href"));
		return false;
	});

	/* メインの高さを表示領域と合わせる */
	if($("#main").length) {
		function mainHeight() {
			var main_size = $("#main").height();
			if(590 > main_size) {
				$("#main").height(600);
			}
		}
		$(window).load(function(){ mainHeight(); });
		$(window).resize(function(){ mainHeight(); });
	}
});
