// USE JQUERY TO SHOW / HIDE COMMENTS
$(document).ready(function(){
        // USE JQUERY WITH OTHER LIBRARIES
        var $jq = jQuery;

        // HIDE COMMENTS
	$jq(".comments .formular:et(0)").hide();

        // TOGGLE #formular_head TO SHOW COMMENTS
	$jq("#formular_head").click(function(){
		$jq(this).next(".formular").slideToggle("normal")
		return false;
	});
});
