// JavaScript Document
$(function(){ 
	$('.formulate').eFormulate();
	
	// Open external and document links in new window
	$('a[href*=www],a[href*=http],a[href*=pdf]').not('a[href*='+location.hostname+']').attr('target','_blank');
	
	// Setup simple page markers
	var bodyID =  $('body').attr('id');
	$('#site_nav a').each(function(){
		var hrefVal = $(this).attr('href');
		if(hrefVal.search(bodyID) != -1 || (bodyID == "home" && hrefVal == "/")) $(this).addClass('marker');
	});
});
