jQuery(document).ready(function()
{
	$('#nav li').hover(
		
		function(){ $(this).find('.sub-nav').show(); $(this).find('a:eq(0)').addClass('active'); },
		function(){ $(this).find('.sub-nav').hide(); $(this).find('a:eq(0)').removeClass('active'); }		
		
	);
	$('.scroll').jScrollPane();

	
});