$(document).ready(function() {
	$("#podcasttext div:first").addClass("podcastselected");
	$("#podcastlist a").click(function() {
		$("#podcasttext div").removeClass();
		$clicked = $(this);
		// each button div MUST have a "xx-button" and the target div must have an id "xx"
		var idToLoad = "podcast-"+$clicked.attr("id");
		//alert(idToLoad);
		$("#podcasttext").find("#"+idToLoad).addClass("podcastselected");
	});
});
