jQuery(document).ready(function(){
	rox_form(); //controls the contact form
});


function rox_form(){
	var my_error;
	var url = jQuery("input[name=temp_url]").attr('value');
	jQuery(".ajax_form #send").bind("click", function(){
											 
	my_error = false;
	jQuery(".ajax_form #message, .ajax_form #email ").each(function(i)
	{
				
				
				var value = jQuery(this).attr("value");
				var check_for = jQuery(this).attr("id");
				var surrounding_element = jQuery(this);
				if(check_for == "email"){
					if(!value.match(/^\w[\w|\.|\-]+@\w[\w|\.|\-]+\.[a-zA-Z]{2,4}$/)){
						
						surrounding_element.attr("class","inputcontact").addClass("error");
						
						my_error = true;
						}else{
						surrounding_element.attr("class","inputcontact").addClass("valid");	
						}
					}
				
				if(check_for == "message"){
					if(value == ""){
						
						surrounding_element.attr("class","messageinput").addClass("error");
						
						my_error = true;
						}else{
						surrounding_element.attr("class","messageinput").addClass("valid");	
						}
					}
						   if(jQuery(".ajax_form #message, .ajax_form #email").length  == i+1){
								if(my_error == false){
									jQuery(".ajax_form").slideUp(400);
									
									var $datastring = "ajax=true";
									jQuery(".ajax_form input, .ajax_form textarea, .ajax_form radio, .ajax_form select").each(function(i)
									{
										var $name = jQuery(this).attr('name');	
										var $value = encodeURIComponent(jQuery(this).attr('value'));
										$datastring = $datastring + "&" + $name + "=" + $value;
									});
																		
									
									jQuery(".ajax_form #send").fadeOut(100);	
									
									jQuery.ajax({
									   type: "POST",
									   url: url+"/send.php",
									   data: $datastring,
									   success: function(response){
									   jQuery(".ajax_form").before("<div class='ajaxresponse' style='display: none;'></div>");
									   jQuery(".ajaxresponse").html(response).slideDown(400); 
									   jQuery(".ajax_form #send").fadeIn(400);
									   jQuery(".ajax_form #name, .ajax_form #message, .ajax_form #email , .ajax_form #phone").val("");
										   }
										});
									} 
							}
					});
			return false;
	});
}