function openBox(id)
{
   var id = "#" + id;
   $(id).slideDown("normal");
}
function closeBox(id)
{
   var id = "#" + id;
   $(id).slideUp("normal");
}

function add_smiley(smiley)
{
    document.getElementById('comment_form').comment.value += " " + smiley + " ";
    window.document.getElementById('comment_form').comment.focus();
}
$(function(){ 
	if(document.getElementById("archives")){
		$("h2 a.archives").toggle(function(){openBox("archives")}, function(){closeBox("archives")});
	}
}); 