$(function(){
	$('#navigation ul li ul').hide();
	$('#navigation ul li').not('.drop li').hover(
		function(){
			$(this).addClass('nav-here');
			$(this).find('ul').animate({opacity: 'toggle'},250);
		},
		function(){
			$(this).removeClass('nav-here');
			$(this).find('ul').animate({opacity: 'toggle'},100);
		}
	);
	$('#shoppers-center').hover(
		function() {
			$(this).find('ul').animate({opacity: 'toggle'},250);
		},
		function() {
			$(this).find('ul').animate({opacity: 'toggle'},250);
		}
	);
		
});
