	$(document).ready(function(){
		//loads menu
		$("ul.sf-menu").superfish();
	
		//load bottom home page boxes
		$('#load').load("default.asp?id=51 #boxes");
		
		//replaces hr tags
		$("hr").replaceWith("<div class='hr'></div>");
		
		//keeps slidebox open on current section
		$("#consulting dt#consulting + dd").addClass("open");
		
		//slidebox
		$("dd:not(.open)").hide();
		$("dt a:not(#nomenu)").click(function(){
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("slow");
		});

		//highlights current page
		var path = location.search.substring(1);
		
		// Set your homepage here, eg. /index.php or /
		var home = "";
		// Check the home link against the path and set the navigation accordingly. 
		if (path == home || path == "/") {
			// Note that the jQuery selector matches *only* the home link
			var $nav = $('#nav a[@href="' + home + '"]');
		} else {
			var $nav = $('#nav a[@href$="' + path + '"]');
		}
		
		$nav.addClass('active');

	});