jQuery(document).ready(function() {
    $('#nav li').hover(
		function(){ $(this).find('.sub-nav').slideDown('slow'); $(this).find('a:eq(0)').addClass('hover'); },
		function(){ $(this).find('.sub-nav').slideUp('slow'); $(this).find('a:eq(0)').removeClass('hover'); }		
	);
	$('.home-nav li').hover(
		function(){ $(this).find('.sub-nav').slideDown('slow'); $(this).find('a:eq(0)').addClass('active'); },
		function(){ $(this).find('.sub-nav').slideUp('slow'); $(this).find('a:eq(0)').removeClass('active'); }		
	);
});
