var fmenu = function(){
	return true;
}

fmenu.init = function(attr){
	if(attr.isOpen != true){
		var menus = $("."+attr.menuClass).hide();
	}
	var openers = $("."+attr.openerClass);
	openers.each(function(index) {
		$(this).css('cursor','pointer');
		$(this).bind('click', {o:$(this)}, function(event) {
			$("#"+event.data.o.attr('rel')).slideToggle('0.4');
		});
	});
	return true;
}
