$(document).ready(function()	{
	
//newsletter code
	$('#destination').click(function() {
 		$('#ft_destination').show("slow");
		$('#ft_artist').hide("slow");
		$('#ft_recipe').hide("slow");
	});
	
	$('#artist').click(function() {
 		$('#ft_destination').hide("slow");
		$('#ft_artist').show("slow");
		$('#ft_recipe').hide("slow");
	});
	
	$('#recipe').click(function() {
 		$('#ft_destination').hide("slow");
		$('#ft_artist').hide("slow");
		$('#ft_recipe').show("slow");
	});
});