jQuery(document).ready(function(){
  jQuery('#contactform').submit(function(){
  
    var action = jQuery(this).attr('action');
  
    jQuery('#contactform #submit')
      .before('<img src="'+QUICKCONTACT_IMG_LOADER+'" class="loader" style="padding-right:10px;"/>')
      .attr('disabled','disabled');
  
    jQuery.post(action, { 
      name: jQuery('#contactform #name').val(),
      email: jQuery('#contactform #email').val(),
      phone: jQuery('#contactform #phone').val(),
      subject: jQuery('#contactform #subject').val(),
      content: jQuery('#contactform #content').val(),
      contact_type_title: jQuery('#contactform #contact_type_title').val(),
      page_title: jQuery('#contactform #page_title').val(),
      page_link: jQuery('#contactform #page_link').val(),
      send_email_to: jQuery('#contactform #send_email_to').val(),
      security_code: jQuery('#contactform #security_code').val(),
      codemd5: jQuery('#contactform #codemd5').val(),
      contact_terms: jQuery('#contactform #contact_terms').is(':checked')
    },
      function(data){
        jQuery('#contactform #security_image').hide();
        jQuery('#contactform #submit').attr('disabled','');
        jQuery('.response').remove();
        jQuery('#contactform').before('<span class="response">'+data+'</span>');
        jQuery('.response').slideDown();
        jQuery('#contactform img.loader').fadeOut(500,function(){jQuery(this).remove();
        jQuery('#contactform #security_image').attr('src', jQuery('#contactform #security_image').attr('src') + ('#'));
        jQuery('#contactform #security_image').show();
        });
      }
    );
  
    return false;
  });
});