$(document).ready(function(){
	//trigger ajax on submit
	$('#contactForm').submit( function(){
		

		
		//hide the form
		//$('#contactForm').hide();
		
		//send the ajax request  
		$.get('../workspace/php/contact.php',{name:$('#name').val(), email:$('#email').val(), add:$('#add').val(), town:$('#town').val(), postcode:$('#postcode').val(), message:$('#message').val()},
	
		//return the data
		function(data){
			//hide the graphic
			$('#contact-errors').append(data);  
		});	
	
		//stay on the page					
		return false;	
	});
	
	//trigger ajax on submit
	$('#signupForm').submit( function(){
		

		
		//hide the form
		//$('#contactForm').hide();
		
		//send the ajax request  
		$.get('../workspace/php/mailinglist.php',{email:$('#email').val()},
	
		//return the data
		function(data){
			//hide the graphic
			$('#mailing-errors').append(data);  
		});	
	
		//stay on the page					
		return false;	
	});
});
