$(document).ready(function(){
	$(".add-comment-link a").click(function(){
		var div = $(this).parent();
		div.toggleClass("comment-add");
		$(".comment-form").toggle();
		$(".first-comment").toggle();
		return false;
	});
	
	$(".comment-form form").submit(function(){
		//var data = $(this).serialize();
		
		//alert(data);
		//return false;
	});
	
	var anhor = location.hash;
	if ( (anhor == '#comments' ) || (anhor == '#quest' )  ) {
		$(".add-comment-link a").click();
	}
	
	var msg = $(".message-added");
	if (msg[0] != 'undefinded') {
		window.setTimeout(function(){
			$(".message-added").hide(500);
		}, 4000)
	}
});

