jQuery(document).ready(function(){

	jQuery("#tipafriendmessagesendnotification [name=tipafriendmessage]").click(function(event){
		event.preventDefault();
		tipafriend_sent_note ();
	});
	
	
});


function tipafriend_sent_note () {
	var oLayer = jQuery('#tafoverlay');
	var oNote = jQuery('#tipafriendmessagesendnotification');

	if (oNote.css('display') != 'none') {
		oLayer.fadeOut("slow");
		oNote.fadeOut("slow");
	} else {
		oLayer.fadeIn('slow');
		oNote.fadeIn('slow');
	}
	
	var x = ($(window).width()/2)-((oNote.width())/2);
	var y = ($(window).height()/2)-((oNote.height())/2);
	oNote.css('top', y+'px');
	oNote.css('left', x+'px');
}

