jQuery.noConflict();
jQuery(function($) {	
	//Snippet to add Selected class to subnav items
	$(function () {
	    // Get rid of http://
		loc = location.href//.substring(7);
		// Get rid of domain name
		//loc = loc.substring(loc.indexOf("/"));

		// Get rid of fragment identifier
		var i = loc.indexOf("#");
		if (i > -1) loc = loc.substring(0, i);
	
		// Highlight navigator links to this page
		$("ul.sub-nav a[href='" + loc + "']").addClass('selected');
	});
});
