function SendAFriend(name) {
	
	this.buttonLink = $("#sendafriend");
	this.sendAFrienDiv = $("#sendafriendcontainer");
 	var mainObject = this;
	var closed = true;

	$(mainObject.buttonLink).click(function(e,index){
		e.preventDefault();
		toggle();
	});
	$(".close",mainObject.sendAFrienDiv).click(function(e){
		e.preventDefault();
		toggle();
		return false;
	});
	$(document).keyup(function(event){
	    if (event.keyCode == 27) {
			closed=false;
			toggle();
	    }
	});
	function toggle(){
		if(closed){
			$(mainObject.sendAFrienDiv).slideUp("low");
			$(mainObject.sendAFrienDiv).css("display","block");
//document.getElementById("sendafriendcontainer").style.display="block";
			closed = false;
		}
		else{
			$(mainObject.sendAFrienDiv).slideUp("fast");
$(mainObject.sendAFrienDiv).css("display","none");

			closed = true;
		}

	}
}
