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