jQuery.noConflict();
	jQuery(function(){
		jQuery('.account-menu').find('li').hover(function(){
			jQuery(this).find('.potlid').stop(true);
			jQuery(this).find('.potlid').animate({
				top: '-69'}, 300, function() {
				    // Animation complete.
  				});	
		},
		function(){
                        jQuery(this).find('.potlid').animate({
                                top: '-49'}, 200, function() {
                                    // Animation complete.
                                });
                }
		);
	});

