
//This is the contac form script
$(document).ready(function(){
		$("form#formOne").submit(function(){
			var str = $("form").serialize();
			 $.ajax({
			 type: "POST",
			 url: "http://www.recycled-tech.com.au/wp-content/themes/Recycled/assets/includes/contactform/contact.php",
			 data: str,
			 success: function(msg){
				$("#note").ajaxComplete(function(event, request, settings){
						if(msg == 'OK'){ // Message Sent? Show the 'Thank You' message and hide the form
							  result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
							  $("#contact-form").hide();
						}else{
							  result = msg;
				  }
			   $(this).html(result);
				  });
				 }});
			   return false;
				});
			 });

//end contact form script$(document).ready(function(){
$(document).ready(function(){
		$("form#formTwo").submit(function(){
			var str = $("form").serialize();
			 $.ajax({
			 type: "POST",
			 url: "http://www.recycled-tech.com.au/wp-content/themes/Recycled/assets/includes/contactform/contact2.php",
			 data: str,
			 success: function(msg){
				$("#note2").ajaxComplete(function(event, request, settings){
						if(msg == 'OK'){ // Message Sent? Show the 'Thank You' message and hide the form
							  result = '<div class="notification_ok">Your message has been sent. Thank you!</div>';
							  $("#contact-form").hide();
						}else{
							  result = msg;
				  }
			   $(this).html(result);
				  });
				 }});
			   return false;
				});
			 });
