$(document).ready(function() {
	$('body').css('background-image', "url('/images/layout/bg.jpg')");
});

function comments(id) {
	getComments(id);
	getForm(id);
}

function getComments(id) {
	var data = '';
	$.post("/comment/getlist/" + id, data, function(result) {	
		$('#ca_comments_messages').html(result);
		$('#ca_comments_container').slideDown("slow");
	});

}

function getForm(id) {

	var data = '';
	$.post("/comment/form/" + id, data, function(result) {	
		$('#commentForm_container').html(result);
	});

}

function submitForm() {

	var data = $('#commentForm').serialize();
	$.post("/comment/submit/", data, function(result) {
		eval(result);
	});

}
