jQuery(function () {
	// IE png fix
	jQuery(document).pngFix();
	
	jQuery.preloadCssImages();

	jQuery('.demo-account').hide();
	
	jQuery('.apply-tab').click(function(){
		jQuery('.apply-for-account').show();
		jQuery('.terms').show();
		jQuery('.demo-account').hide();
		jQuery('.header').removeClass('header-two');
	});
	
	jQuery('.demo-tab').click(function(){
		jQuery('.apply-for-account').hide();
		jQuery('.terms').hide();
		jQuery('.demo-account').show();
		jQuery('.header').addClass('header-two');
	});
	
});

function checkAgree() {
	var d = document.getElementById("promoLand");
	if ((d.age.checked) && (d.understand.checked) && (d.usa.checked)) {
		document.location.href = "http://www.capitalspreads.com/public/clicked.html";
	} else {alert("Please check all boxes");}
}