$("document").ready(function(){
	$("div#menuright div").not("div#catering").hide();
	$("div.menubtn a").click(function(){
		$("div.menubtn a").removeClass("activated");
		$(this).addClass("activated");
		var theDiv=$(this).attr("href").substring(1);
		$("div#menuright div").hide();
		$("div#menuright div#"+theDiv).fadeIn("slow");
		return false;
	});
});
