$(document).ready(function() {
	// Empty for now
});

function vote(id, vote, comment, blog_id)
{
	$.post("/ajax/vote.php", { id: id, vote: vote, comment: comment, blog_id: blog_id },
	function(data) {
		if(data != "")
		{
			if(vote == "y")
			{
				$("#"+comment+"up_"+id).text(data);
			}
			else
			{
				$("#"+comment+"down_"+id).text(data);
			}
		}
	});
}

function updateTitle()
{
	$("h2#wmd-preview-title").text($("#title").val());
}

function updateOrginalBody()
{
	$("#orginal-body").text($("#wmd-input").val());
}