$(document).ready(function(){
	$(".staf_open, .close").click(function(){
		$("#send_to_a_friend").slideToggle("slow");
		$('#send_to_friend_form').fadeIn('slow');
        $('#confirmation').fadeOut('slow'); 
	});
});