;(function($){

	$.fn.foldable = function(){
		$(this).next().hide();
		return $(this).each(function(){
			$(this).click(function(){
				$(this).next().slideToggle();
			});
			
			$(this).hover(function(){
				$(this).css({
					color: "#ef3e42"
				});
			},function(){
				$(this).css({
					color: "#00126d"
				});
			});
		});
	}
})(jQuery);
