$(function() {
$(".submit").click(function() {
var comment = $("#comment").val();
var pid = $("#id").val();
var dataString = 'comment=' + comment + '&id=' + pid ;

if(comment == ''){
	alert('Your comment cannot be blank');
  }else{
	$("#flash").show();
	$("#flash").fadeIn(400).html('<img src="/themes/wedshooter/images/ajax-loader.gif" />Loading Comment...');
	$.ajax({
	type: "POST",
	url: "/index.php?component=video&load=comments&act=addcomment",
	data: dataString,
	cache: false,
	success: function(html){
	$("ol#update").append(html);
	$("#flash").hide("slow", function() {
		$("ol#update li:last").slideDown("fast", function() {
			$("ol#update li:last div").fadeTo("fast",1);
			$("ol#update li:last").animate({backgroundColor: '#EAEAEA'}, 1000);
		});
		$("#comment").attr("value","");
	});
	}
});
}return false;
}); });
