// ON DOCUMENT READY CALLS
$("document").ready(function(){
	// ADD A JS BODY CLASS
	$("body").addClass("js");
	// EXTERNAL LINKS
	//$("a[href^='http:']:not([href*='" + window.location.host + "'])").each(function(){
	//	$(this).attr('target','_blank');
	//	$(this).addClass("external");
	//});
	// FORM VALIDATION
	$("#contact_form").validator();
});
