// we will add our javascript code here           
   
// When DOM is ready
$(document).ready(function(){

// ------- Submit First Form -------

$("#contact").submit(function(){

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "/feedback/contact.php",
   data: str,
   success: function(msg){
    
$("#note").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
$("#fields").hide();
}
else
{
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});

// ------- Submit Second Form -------

$("#feedback").submit(function() {

var str = $(this).serialize();

   $.ajax({
   type: "POST",
   url: "/feedback/feedback.php",
   data: str,
   success: function(msg){
    
$("#note-two").ajaxComplete(function(event, request, settings){

if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
{
result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
$("#fields-two").hide();
}
else
{
result = msg;
}

$(this).html(result);

});

}

 });

return false;

});

});


