function loadWhatsOn(myentry){
	new Ajax.Request("test_page.php?id="+myentry, {
			asynchronous:true, evalScripts:true, 
			onComplete:function(request){$('indicator').hide();$('whats_on_content').show();}, 
			onLoading:function(request){$('indicator').show();$('whats_on_content').hide();},
			onSuccess:function(response) {
			   		$('whats_on_content').innerHTML=response.responseText;
			}
	});
}