/* Onload Methods */

window.onload = function(){ 
	
	$(".leftBox ul").find("li:first").addClass("first");
	$(".leftBox ul").find("li:last").addClass("last");
	$(".leftBox").find("a[href='" + document.location.href + "']:first").addClass("active-link");
	$(".leftBox").find("a[href='" + document.location.href + "']").parent().addClass("active");
	
	
	
}

window.ready = function(){ 

}

