$(function() {
    $('.error').hide();
    $("#suggestform input.button").click(function() {
      // validate and process form here
      
      $('.error').hide();
  	  	
		var nom = $("input#nom").val();
  		var url = $("input#url").val();
		var comment = $("textarea#comment").val();
  		
		if (url == "") {
			$("label#url_error").show();
			$("input#url").focus();
			return false;
			}

		var dataString = 'nom='+ nom + '&url=' + url + '&comment=' + comment;
		//alert (dataString);return false;
		$.ajax({
			type: "POST",
			url: "http://www.radioactiveclips.com/wp-content/themes/RadioactiveTheme_EN/send_mail.php",
			data: dataString,
			success: function() {
				$('#suggestform').html("<div id='message'></div>");
				$('#message').html("<h3>Your suggestion has been sent!</h3>")
					.append("<p>If it is chosen, we will give you credit on the bottom of the post.</p>")
					.hide()
					.fadeIn(1500, function() {} );
			}
		});
		return false;
		
    });
  });

  
