//scrollbar

$(function()
{
	$('#pane1').jScrollPane();
});

//top menu
$(function() {
		   
	// If no JS CSS menu will still work
	$("#menu2").removeClass("cssonly");
	// Find subnav menus and slide them down
	$("#menu2 li a.rootNav").hover(function(){ 
		$(this).addClass("bgcol");
		$(this).parent().find("ul.subnav").fadeIn("fast");
		$(this).parent().hover(function() {
		}, function() {
			// On hovering out slide subnav menus back up
			$(this).parent().find("ul.subnav").fadeOut("fast");
			$("#menu2 li a.rootNav").removeClass("bgcol");
		})
	});

});


