$(document).ready(function(){
	
	$("#menu li.one").hover(
		function () {
			var pos = $(this).position();
			$(this).find("ul:first").css("top",pos.top + 35);
			$(this).find("ul:first").css("left",pos.left);
			$(this).find("ul:first").css("z-index","9999");
			$(this).find("ul:first").show();
		}, 
		function () {
			$(this).find("ul:first").hide();
		}
	);

	//set the selected item
	$("#menu li.one a[href="+location.pathname+"]").parents("li.one:first").addClass("active");

	$('div#colTwo .scroll').jScrollPane({showArrows:false, scrollbarWidth:10, scrollbarMargin:15, reinitialiseOnImageLoad:true});
	
});

