		jQuery.fn.fadeToggle = function(speed, easing, callback) {
			return this.animate({opacity: 'toggle'}, speed, easing, callback);  
		};
		
		$(document).ready(function() {
		
			/* Tell a friend popup */
		  $('#tellfriend').hide();
		  $('a.email, #tellfriend a.close').click(function() {
		  	$("#tellfriend").fadeToggle('slow');
		  });
		  
		 	/*  Main nav dropdowns */
			$('ul.sf-menu').superfish({
				autoArrows:  false
			}); 
		  
		  
		}); 
		
		
		

