function add_smiley(smiley)
{
    document.getElementById('comment_form').comment.value += " " + smiley + " ";
    window.document.getElementById('comment_form').comment.focus();
}

animatedcollapse.addDiv('smiley', 'fade=1,hide=1');
animatedcollapse.init();


$(document).ready(function(){
   $("a.smiley").click(function(event){
		if ($("a.smiley").text() == "Smileys einblenden") {
			$("a.smiley").text("Smileys ausblenden");
			$("#smiley").removeClass("hidden");			

			$('div#col1').height($("#col1").height() + $("#smiley").height());
			$('div#col2').height($("#col2").height() + $("#smiley").height());
		} else {
			$("a.smiley").text("Smileys einblenden");

			$('div#col1').height($("#col1").height() - $("#smiley").height());
			$('div#col2').height($("#col2").height() - $("#smiley").height());
		}
		animatedcollapse.toggle('smiley');
		return false;
   });
 });

