// if cookie exists, load default index
if($.cookie("new Website") == "shown") {
	window.location.href = "http://www.thekatzgroup.com/index2.html";		
}

$(document).ready(function() {	
	// set cookie on first time for one day
	$.cookie("new Website", "shown", { expires: 1 });
	
	// click countdown, load default site
	$('#CD').click(function() {
		window.location.href = "http://www.thekatzgroup.com/index2.html";
	});
});