
var tagthis_ajax_url = "http://www.dandyandcompany.com//wp-live/wp-content/plugins/tagthis/backend.php";

function whenLoading(postid) {
    var e = document.getElementById('tt-finished'+postid);
    e.innerHTML = "<p>Sending Data...Please Wait.</p>";
}

function whenInteractive(postid) {
    var e = document.getElementById('tt-finished'+postid); 
    e.innerhtml=tagthis.response;
}


function ajaxAddTag(postid) {
	
	var tagtext=$("#tagtext"+postid).val();
	
	$.ajax({
	  type: "POST",
	  url: tagthis_ajax_url,
	  data: {
		"postid":postid, 
		"tag":tagtext, 
		"key":tagThisKey 
		},
	  beforeSend: function(){ $("#tt-response"+postid).html("Sending...").show('fast'); },
	  success: function(data){ $("#tt-response"+postid).html(data); }
	});
}