// JavaScript Document
function changeText(){
	//document.getElementById('inMenu').innerHTML = 'Fred Flinstone';
	
	var newHTML = '<h1 class="qcmenu qc">Quick Links</h1><h2>' +
      '<a href="file/resource/misc/quick_faqs_about_the_ndc.pdf" target="_blank">Quick FAQs about the NDC</a>' +
	'<a href="http://www.foi.gov.ky/" target="_blank">  Official Freedom of Information site for the Cayman Islands</a>' +
	'<a target="_blank" href="file/resource/FOI/FOI-Request.pdf">How to Make an FOI Request</a>' +
	'<a target="_blank" href="file/resource/FOI/FOI-Form.pdf">FOI Request Form</a>' +
	'<a href="file/resource/resource/Sponsorship_Packages.pdf" target="_blank">Become A Sponsor</a>' + 
	'<a href="file/resource/resource/Volunteer_Sheet.pdf" target="_blank">Volunteer with Us</a>' +
	'<a href="media.html"> Videos and Downloads </a>' +
	'<a target="_blank" href="http://www.gov.ky">Cayman Islands Government 2008/2009 Budget Documents</a></h2>';
	document.getElementById('inMenu').innerHTML = newHTML;	
	//alert('Updated');
}