/*
 * Leet Avarthrel web site effect stuff.
 * This stuff depends on jQuery (http://jquery.com/).
 */

$(document).ready(function(){
	// So right now jQuery is pretty useless.
	/* add_comment_link();
	   hide_comment_form(); */
	return true;
});

function add_comment_link() {
	$("#story-comments").append("<p id=\"comment-show-form\"><a href=\"\" onclick=\"show_comment_form(); return false;\"><img src=\"btn_add_comment.jpg\" height=\"34\" width=\"235\" alt=\"Add comment\"/></a></p>");
	$("#story-comments").append("<p id=\"comment-hide-form\"><a href=\"\" onclick=\"hide_comment_form(); return false;\"><img src=\"btn_cancel_comment.jpg\" height=\"34\" width=\"235\" alt=\"Cancel comment\"/></a></p>");
	$("#comment-hide-form").hide();
}
function show_comment_form() {
	$("#comment-show-form").hide();
	$("#comment-hide-form").show();
	$("#comment-form").show("slowly");
}

function hide_comment_form() {
	$("#comment-show-form").show();
	$("#comment-hide-form").hide();
	$("#comment-form").hide("slowly");
}

