$(function() {

/*
	$(".expandable li .content").hide();
	$(".expandable li a").click(function(){
		$(".expandable li .content").slideUp("fast");
		$(this).next(".content").slideDown("normal");
		$(".expandable li").removeClass("active");
		$(this).parent("li").addClass("active");
	});
*/
});