jQuery(document).ready(function(){
	
		$('#contactform').submit(function(){
	
		var action = $(this).attr('action');
		
		$('#submit')
			.before('<img src="../Slices/images/ajax-loader.gif" class="loader" />')
			.attr('disabled','disabled');
		
		$.post(action, { 
			name: $('#name').val(),
			email: $('#email2').val(),
			phone: $('#phone_number').val(),
			comp: $('#comp').val(),
			website: $('#website').val(),
			comments: $('#comments').val()
		},
			function(data){
				$('#contactform #submit').attr('disabled','');
				$('.response').remove();
				$('#contactform').before('<span class="response">'+data+'</span>');
				$('.response').slideDown();
				$('#contactform img.loader').fadeOut(500,function(){$(this).remove()});
				if(data=='Thank you!  We will contact you soon!') 
				{
					$('#contactform').slideUp();
  					setTimeout('window.location="http://www.s2webdesign.com/"',5000);
  					document.getElementById("redstate").innerHTML = "You are about to be redirected to our homepage!";
				}
			}
		);
		
		return false;
	
	});
	
});