// 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;
	
	
  });


});

function switchMainImage(src)
{
	$(".ft-mainImage").remove();
	$("#mainImage").html('<img src="' + src + '">');
	$('#mainImage').jqFancyTransitions({ width: 725, height: 300, effect: "wave", delay: 999999 });		
}



