// we will add our javascript code here           
   
$(document).ready(function(){
$("form").submit(function(){

var str = $("form").serialize();
    $.ajax({
   type: "POST",
   url: "contact.php",   
   data: str,
   success: function(msg){
    $("#note").ajaxComplete(function(event, request, settings){
if(msg == 1) // Message Sent? Show the 'Thank You' message and hide the form
{   
result = '<div class="notification_ok">Du har tilmeldt dig til at blive inviteret til at høre Prem Rawat tale. Så snart vi kender tid og sted for arrangementet, vil vi give dig besked. Dine data vil udelukkende blive anvendt til dette formål.</div>';
$("#fields").hide();
}
else
{ 
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});

});

