$(document).ready(function() {
	$("#search-label").css("display", "inline");
	$("#search-label").labelOver("over-apply");
	$("#scrollArea").jScrollPane({
		scrollbarOnLeft:true,
		showArrows: true,
		dragMaxHeight: 1,
		wheelSpeed: 20,
		scrollbarWidth: 25,
		topCapHeight: 5,
		bottomCapHeight: 5,
		reinitialiseOnImageLoad: true
	});
	//$(".submenu").corner();
	$(".submenu").each(function() {
		var width = $(this).width();
		$(this).css("width", width + "px");
		$(this).css("margin-left", 8 + (width*-0.5) + "px");
		$(this).before("<div class='bar'></div>");
	});
	$("a.image").lightBox({
		overlayOpacity: 0.4,
		overlayBgColor: "#000000"
	});
	
	$(".scroll-to").click(function(e) {
		var targetElementSelectorString = $(this).attr('rel');
		$("#scrollArea")[0].scrollTo(targetElementSelectorString);
		return false;
	});
});
