$(function()
{
	$('#scroll').jScrollPane({showArrows:true, scrollbarWidth:5, scrollbarMargin:10});
});

$(function()
{
	$('#nav li').hover(
	  function () {
		$(this).css('margin-top', '-10px');
	  }, 
	  function () {
		$(this).css('margin-top', '0px');
	  }
	);

});
