﻿jQuery(document).ready(function(){
	
	jQuery('#contactform').submit(function(){
	
		var action = jQuery(this).attr('action');
		
		jQuery('#submit')
			.before('<p style="text-align: right"><img src="http://www.pulsemediaweb.com/js/ajax-loader2.gif" class="loader" alt="" /></p>')
			.attr('disabled','disabled');
		
		jQuery.post(action, { 
			ipaddress: jQuery('#ipaddress').val(),
			name: jQuery('#name').val(),
			email: jQuery('#email').val(),
			phone: jQuery('#phone').val(),
			concerning: jQuery('#concerning').val(),
			message: jQuery('#message').val()
		},
			function(data){
				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()});
				if(data=='Message sent!') jQuery('#contactform').slideUp();
			}
		);
		
		return false;
	
	});
	
});