/************************************************************
* common.js - ロールオーバーなど基本のJS
* 
* 株式会社たき工房 media extension | http://www.mex-net.jp/
************************************************************/

$(function(){
	//▼各ページ表示
	$("nav ul li > a").click(function(){
		var href = $(this).attr("href");
		$(".innerPage").hide().css({"z-index":"0"});
		$(href).css({
			"display":"block",
			"opacity":"0",
			"top":"-400px",
			"z-index":"10"
		}).animate({
			"opacity":"1",
			"top":"0px"
			}, 800, "easeOutExpo"
		);
	});
	
	//▼クローズ	
	$(".closeBtn").click(function(){
		$(".innerPage").fadeOut().css({"z-index":"0"});
	});
	
	//▼toContact
	$(".toContact").click(function(){
		var href = $(this).attr("href");
		$(".innerPage").hide(1000).css({"z-index":"0"});
		$(href).css({
			"display":"block",
			"opacity":"0",
			"top":"-400px",
			"z-index":"10"
		}).animate({
			"opacity":"1",
			"top":"0px"
			}, 800, "easeOutExpo"
		);
		return false;
	});
});
