$(document).ready(function(){
	$("#location-input-text-name").click(function(){
		$("#location-input-text-name").val("");
	});	
	$("#location-input-text-emailaddress").click(function(){
		$("#location-input-text-emailaddress").val("");
	});
	$("#location-input-text-phonenumber").click(function(){
		$("#location-input-text-phonenumber").val("");
	});
	$("#location-input-text-category").fadeTo("slow", .60);
	$("#location-input-text-category").focus(function(){
	    $(this).fadeTo("slow", 1);
	});
	$("#location-input-text-category").blur(function(){
	    $(this).fadeTo("slow", .60);
	 });
	 /*
$('#location-input-button-send').click(function(){
		var name = $("#location-input-text-name").val();
  		var email = $("#location-input-text-emailaddress").val();
 		var phonenumber = $("#location-input-text-phonenumber").val();
		var category = $("#location-input-select-category").attr("value");
		var comment = $("#location-input-textarea-comment").attr("value");
  		var dataString = 'name='+ name + '&email='+ email + '&Phone Number='+ phonenumber + '&Category='+ category + '&Comment='+ comment;
		$.ajax({
	      type: "POST",
	      url: "",
		  dataType: "jsonp",
	      data: dataString,
	      complete: function() {
		  	$('#location-input-form').slideUp("fast");
	        $('#location-input-form-success').show();
	      }
	    });
	    return false;
	});
*/
});