$(document).ready(function(){
		$(".attachments dd").hide();
		$(".attachments dt").click(function(){
			$(this).next().slideToggle('fast');
		});    
                
        $(".entry-page #entry-nav").css("position","absolute");
		$(".collapsible .entry-archive").hide();
		$(".collapsible .toggle").click(function(){
		//get the entry archive related to the clicked element
		var the_archive_list = $(this).parent().find(".entry-archive");
                //fold any entry archive that is unfolded
                $(".entry-archive:visible").not(the_archive_list).slideUp("fast");
                //fold or unfold the archive related to the clicked element
                the_archive_list.slideToggle("fast");
		return false;
		});
	});