$().ready(function() {

// Nav Logic
	setNav(window.location.hash);

	$('#site').codaSlider({
		dynamicArrows: false,
		dynamicTabs: false,
		firstPanelToLoad: ((window.location.hash) ? window.location.hash : 1)
	});

	$("a.xtrig").click(function() {
		setNav($(this).attr("href"));
	});


// Contact Form

	$('#contact-form').ajaxForm({target: '#placeholder', type: 'post', beforeSubmit: function() { $("#loading").show(); }}); 

});

function setNav(hash) {
	$(".current").removeClass("current");		
	$("#navController").find('a[href="' + hash + '"]').addClass("current");
}