	$(window).load(function() {
		/* accordion init */
		$("#HTML6").tabs("#HTML6 li p", {tabs: 'h4', effect: 'slide', initialIndex: null});
		/* lavalamp init */
        $("#lava_menu").lavaLamp({
            fx: "easeOutBack",
            speed: 700,
            click: function(event, menuItem) {
                return true;
            }
        });
    });


/* toggle comments init */
	$(window).load(function togglecomments (postid) {
		var whichpost = document.getElementById(postid);
		if (whichpost.className=="commentshown") { whichpost.className="commenthidden"; }
		else { whichpost.className="commentshown"; }
    });

