$(function(){

$("#contentArea").show();

$("#btn1").show();
$("#btn1-txt").show();


// this initialises the button function
	$("#btn1").click(function(){
		$('.resumeButton-text').hide();
		$('.resumeButton').hide();
		$('#btn2').show();
		$('#btn2-txt').show();
		
	});


	$("#btn2").click(function(){
		$('.resumeButton-text').hide();
		$('.resumeButton').hide();
		$('#btn1').show();
		$('#btn1-txt').show();
	});



// this initialises the news item click functions.
	$("#navigation li").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
	});


	$("#secondaryLogo").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
	});
	
	
	



	


});




