// START JQUERY
$(document).ready(function(){

// SUPERFISH
	$(".sf-menu").superfish({
		delay:			500,
		animation:		{opacity:'show',height:'show'},
		speed:			'fast',
		disableHI:		false,
		dropShadows:	false,
		autoArrows:		true
	});

// SET ACTIVE MENUS
	$("#lcol li a").each(function() {
		if(this.href == window.location.href.split("#")[0]) {
			$(this).addClass("active");
			$(this).parents("li:last").addClass("current");
		}
	});
	
// ADD CLASSES
	$("li:first-child,dl:first-child").addClass("first");
	$("li:last-child,dl:first-child").addClass("last");
	
});
// END JQUERY