jQuery(document).ready(function() {
	/* AJAX Contact Form */
	
		
		$("#newsletter-form").submit(function(){
			// 'this' refers to the current submitted form
			var str = $(this).serialize();
			$.ajax({
				type: "POST",
				url: "http://www.thinkmediauk.co.uk/thinkmedia/subform.php",
				data: str,
				success: function(msg){
					$("#note").ajaxComplete(function(event, request, settings){
						

					});
				}
			});
			return false;
		});

});
