$(document).ready(function() {
	// main menu active items
	$(".first-of-type li").click(function () {
 		$(this).addClass("hilite");
	}, function () {
 		$(this).removeClass("hilite");
	});

	// last paragraph style
	$(".last").next("p").css("background", "#20252b");
	$(".last").next("p").css("padding-bottom", "5px");
	$(".last").next("p").css("color", "#fff");
	$(".last").next("p").css("border-bottom", "1px solid #fff");
	$(".last").next("p").css("padding-bottom", "30px");
	$(".last").next("p").find("a").css("color", "#fff");
	$(".last").css("display", "none");
	
	/*$(".moduleHighlight1 tr td:first-child").css("width", "100px");
	$(".moduleHighlight1 td table tr td:first-child").css("width", "500px");*/

});

