// JavaScript Document
 $("#nav").ready(function(){
   //drop down sub menus
   $("#nav li").hover(
		function() { $("ul", this).fadeIn("slow"); $(this).addClass("hover");}, //show with slide effect
		function() { $("ul", this).hide(); $(this).removeClass("hover");}
		);							  
 });

$(document).ready(function(){
	$("#pane").jScrollPane({showArrows:true});
});