function showEvents(clickedDate,rss){
		if(rss == true)
		{
			data = 'date='+clickedDate+'&rss';
		}else{
			data = 'date='+clickedDate;
		}
		
		$.ajax({  
			type: "GET",
			url: "../_php/events.php",
			data: data,
			success: function(msg){
				$('#news_pag').hide();
				$('#content').text('');
				$('#content').append(msg);
			}
		});
	}
	
function showPressRelease(id){
	$.ajax({  
			type: "GET",
			url: "../_php/news.php",
			data: 'getStory&id='+id,
			success: function(msg){
				$('#news_pag').hide();
				$('#content').text('');
				$('#content').append(msg);
			}
		});
}

function showNewsStory(id){
	$.ajax({  
			type: "GET",
			url: "../_php/news.php",
			data: 'getNewsStory&id='+id,
			success: function(msg){
				$('#news_pag').hide();
				$('#content').text('');
				$('#content').append(msg);
			}
		});
}


