$(document).ready(function(){
	$("#amishLink").click(function(){
		$("#cover").fadeIn();	
		$("#aCraft").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#aCraft").fadeOut();
	});
	
	$("#styleLink").click(function(){
		$("#cover").fadeIn();	
		$("#styles").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#styles").fadeOut();
	});
	
	$("#rqInfo,#rqInfo2").click(function(){
		$("#cover").fadeIn();	
		$("#free").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#free").fadeOut();
	});
	
	//Promotions
	
	$("#promotionLink").click(function(){
		$("#cover").fadeIn();	
		$("#promotions").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#promotions").fadeOut();
	});
	$("#referralLink").click(function(){
		$("#cover").fadeIn();	
		$("#referral").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#referral").fadeOut();
	});
	$("#citizenLink").click(function(){
		$("#cover").fadeIn();	
		$("#citizen").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#citizen").fadeOut();
	});
	$("#financeLink").click(function(){
		$("#cover").fadeIn();	
		$("#finance").fadeIn();
	});
	$(".closePop").click(function(){
		$("#cover").fadeOut();	
		$("#finance").fadeOut();
	});
	
	$("#nextF").click(function(){
		$("#fOne").fadeOut("fast");
		$("#fTwo").fadeIn("slow");
	});
	$("#backF").click(function(){
		$("#fTwo").fadeOut("fast");
		$("#fOne").fadeIn("slow");
	});
	
});
