
    function read(guid) {
        
		$.post("/posts/trackread", {id: guid}, function(xml) {
			if (xml == "ERROR") {
			} else {
				$("."+guid+"_reads").html("" + xml + " Reads ");
			}
			return false;
		});
    }

    function readpost(guid) {
        
		$.post("/posts/readpost", {id: guid}, function(xml) {
			if (xml == "ERROR") {
			} else {
				$("#"+guid+"").fadeOut(500);
				$("#"+guid+"").removeClass("current");
				$("#"+guid+"").removeClass("unread");
			}
		});
    }

    function feature(guid) {
        
		$.post("/posts/feature", {id: guid}, function(xml) {
			if (xml == "ERROR") {
			} else {
				$("."+guid+"").fadeOut(500);
			}
			return false;
		});
    }	

    function reject(guid) {
        
		$.post("/posts/reject", {id: guid}, function(xml) {
			if (xml == "ERROR") {
			} else {
				$("."+guid+"").fadeOut(500);
			}
			return false;
		});
    }	

    function tags(guid) {
        
        alert($("."+guid+"_tags").val());
			$.post("/posts/tags", {id: guid, tags: $("."+guid+"_tags").val()}, function(xml) {
				if (xml == "ERROR") {
				} else {
				}
				
				return false;
			});
    }	
