$(document).ready(function(){
	$("#comments").load('/comments.php');

	$("#leavecomment").click(function(){
		$("#commentform").slideDown(500);
	});

	$("#commentform .left input, .right textarea").focus(function(){
		$(this).fadeTo(300, 1.0);

		$("#commentform .left input, .right textarea").blur(function(){
			$(this).fadeTo(300, 0.2);
		});
	});

    $("#clear").click(function(){
        $("#textarea").load('clear.php');
        $("#nameinput").load('display.php');
    });
});
