// People & client area modal windows
$(document).ready (function() {
	$('.fixedAjaxDOMWindow').openDOMWindow({ 
		height: 700,
		width: 960,
		positionType: 'centered',
		eventType: 'click',
		loader: 1,
		loaderImagePath: '/images/icons/loading.gif',
		loaderHeight: 16,
		loaderWidth: 16,
		windowSource: 'ajax', 
		borderSize:'0', 
		overlayColor:'#fff', 
		overlayOpacity:'97', 
		windowBGColor:'transaprent' 
	});
});


// Contact form labels
$(document).ready(function(){
	$(":text:not([value])").labelify({ labelledClass: "labelHighlight" });
});

// Open links to other sites in new windows.
$(function() {
	$("a[href^='http:']").not("[href*='tangerinepr'], [href*='localhost']").attr('target','_blank');
});

// Map sections in the navigation to number keys.
$(function() {
	$("#homeNav a").mapKey("1");
	$("#servicesNav > a").mapKey("2");
	$("#whyNav a").mapKey("3");
	$("#clientsNav > a").mapKey("4");
	$("#peopleNav > a").mapKey("5");
	$("#freshNav a").mapKey("6");
	$("#contactNav a").mapKey("7");
});