/**
 * Last Edit
 * By	:	Michael
 * When	:	5 Aug 08
 * What	:	Tabbage for the front page
 */
$(document).ready(function(){
	$("ul.nav").superfish({
		animation	: {height:"show"}
	});
	$('#home_updates > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
   // hide sidebar stuff on pageload 
   $("li#categories-210868261 ul").hide();
   $("li#archives ul").hide();
   // button to toggle visibility
   $("li#categories-210868261 h2").click(function () {
     $("li#categories-210868261 ul").slideToggle("slow");
   });  	
   $("li#archives h2").click(function () {
     $("li#archives ul").slideToggle("slow");
   });
});
/*
// cusomisation options listed here, if you need them
$(document).ready(function(){
	$("ul.nav").superfish({
		hoverClass	: "sfHover",
		pathClass	: "overideThisToUse",
		delay		: 800,
		animation	: {opacity:"show"},
		speed		: "normal",
		oldJquery	: false, // set to true if using jQuery version below 1.2 
		disableHI	: false, // set to true to disable hoverIntent detection 
		onInit		: function(){},
		onBeforeShow	: function(){},
		onShow		: function(){},
		onHide		: function(){}
	});
});
*/
