// Send To A Friend

$(function() { 
	$('#tell_a_friend').click( function() { showStaf(); return false; });
	$('#staf #btn_close').click( function() { hideStaf(); return false});
});

function showStaf() {
	$('#staf #staf-submit').click( function() { send_sendtoafriend_form(); return false});
	$('#staf').css({left: "-10000px", top: "-10000px"});
	$('#staf').show();
	posLeft = Math.round(($(window).width() - $('#staf').outerWidth()) / 2);
	posTop = $("body").scrollTop() + Math.round(($(window).height() - $('#staf').outerHeight()) / 3);
	$('#staf').css({left: posLeft+"px", top: posTop+"px"});
}

function hideStaf() { 
	$('#staf .error').removeClass('error');
	document.getElementById('staffrm').reset();
	$('#staf').hide();
}


function send_sendtoafriend_form() {
	var stafData = $("#staffrm").serialize();
	$.ajax({
		type: "POST",
		cache: false,
		url: "ajax/staf.ajax.php",
		data: stafData,
		success: function(msg){
			if(msg == "oke") {
			 	hideStaf();
			} else {
				$('#staffrm').html(msg);
				$('#staf #btn_close').click( function() { hideStaf(); return false});
				$('#staf #staf-submit').click( function() { send_sendtoafriend_form(); return false});
			}
		}
	});
}
