jQuery(function(){
	//loads drop menu
	$("ul.sf-menu").superfish();

	//replaces HR tags with a DIV
	$("hr").replaceWith("<div class='hr'></div>");
	
	//makes button links
	$("a.button").wrapInner("<span></span>");
	
	//equal heights
    $("#internal2 .box").equalHeights();

	//highlights current page
	var path = location.pathname.substring(1);
	
	// Set your homepage here, eg. /index.php or /
	var home = "index.html";
	// Check the home link against the path and set the navigation accordingly. 
	if (path == home || path == "index.html") {
		// Note that the jQuery selector matches *only* the home link
		var $nav = $('#internal2 #col1 li a[href="' + home + '"]');
	} else {
		var $nav = $('#internal2 #col1 li a[href$="' + path + '"]');
	}
	
	$nav.addClass('active');

});
