// Custom site initialization goes here.
jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);  
};


$(document).ready(function() {
    $('#tell_a_friend_form').hide();
    $('#tell_a_friend_link, #tell_a_friend_form a.close').bind('click', function(e) {
			$("#tell_a_friend_form").fadeToggle('slow');
		 	// e.preventDefault();
			return true;
	
	
  });


});
$(document).ready(function() {					   
	$("#open").mouseenter(function() { 
		$("#offersopen").slideUp();
	});
	
	$("#open").mouseleave(function() { 
		$("#offersopen").slideDown();
	});
		
});




