//dynamically change the selected state of the nav for each page

	var thisURL = window.location.href
				window.location.toString();
				"" + window.location

	var thisDomain = document.domain;

	if (thisURL.match("www.") == null)	{		
		var relThisURL = thisURL.replace("http://"+thisDomain+"/", "");
			 } else { 
		var relThisURL = thisURL.replace("http://www."+thisDomain+"/", "");
		
	 }

	$(document).ready(function(){
		
		//dynamically change the selected state of the nav for each page
		
		
		$(".mainNav li a").each(function (i) {
			if ($(this).attr("href") == relThisURL){
				$(this).parent().addClass("current");
			}
		});

		
		$("#footer a").each(function (i) {
			if ($(this).attr("href") == relThisURL){
				$(this).addClass("selectedLink");
			}
		});
		
		
		$(".homeList").append('<div class="separator"></div>');
		
		
	});
