$(document).ready(function() {
	//add PDF icon and set target
	$("a[href$='.pdf']").addClass("pdf_link");
	$("a[href$='.pdf']").attr({"target":"_blank"});
   
   /*
	//get the current path
	var currentpath = window.location.pathname;
	var current_nav = "";
	
	if (currentpath.indexOf("/aboutus/") > 0) {
		current_nav = "nav_aboutus";
	} else if (currentpath.indexOf("/team/") > 0) {
		current_nav = "nav_team";
	} else if (currentpath.indexOf("/portfolio/") > 0) {
		current_nav = "nav_portfolio";
	} else if (currentpath.indexOf("/entrepreneur/") > 0) {
		current_nav = "nav_entrepreneur";
	} else if (currentpath.indexOf("/news/") > 0) {
		current_nav = "nav_news";
	} else if (currentpath.indexOf("/contact/") > 0) {
		current_nav = "nav_contact";
	}
	
	//alert(current_nav + " : " + $(this).attr("id"));
	$('div#globalnav a').each(function(i) {
		//if the anchor matches the current page
		if ($(this).attr("id") == current_nav) {
			//apply the active calss to the anchor
			$(this).addClass("selected");
		}
	});
	*/

});





