jQuery.slideMenu = {
	init:function(handle){
		var $ = jQuery;
		var self = this;
		$(handle).each(function(){
			var title  = encodeURIComponent($(this).text());
			var cookie = $.cookie(title);
			if(cookie) $(this).next().show();
			else       $(this).next().hide();
		}).click(function(){
			var title  = encodeURIComponent($(this).text());
			var cookie = $.cookie(title);
			if(cookie) $.cookie(title,null, self.option);
			else       $.cookie(title, '1', self.option);
			$(this).next().slideToggle(self.anime);
		});
	},
	anime:'fast',
	option:{expires:7}
};
