
homeOn = new Image();
homeOn.src = '/i/m/home-on.gif';
homeOff = new Image();
homeOff.src = '/i/m/home-off.gif';

whatOn = new Image();
whatOn.src = '/i/m/what-on.gif';
whatOff = new Image();
whatOff.src = '/i/m/what-off.gif';

newsOn = new Image();
newsOn.src = '/i/m/news-on.gif';
newsOff = new Image();
newsOff.src = '/i/m/news-off.gif';

planOn = new Image();
planOn.src = '/i/m/plan-on.gif';
planOff = new Image();
planOff.src = '/i/m/plan-off.gif';

contactOn = new Image();
contactOn.src = '/i/m/contact-on.gif';
contactOff = new Image();
contactOff.src = '/i/m/contact-off.gif';


function swapImg(id, img) {
	document.getElementById(id).src = img.src;
}

function showConfPk(no) {
	// First turn all of our images off
	document.getElementById('pk1img').src = '/i/pk-1off.gif';
	document.getElementById('pk2img').src = '/i/pk-2off.gif';
	// Now turn on our selected image
	var turnMeOn = 'pk' + no + 'img';
	var turnImage = '/i/pk-' + no + 'on.gif';
	document.getElementById(turnMeOn).src = turnImage;

	// Now hide all our divs and then show the correct one
	document.getElementById('pk1').style.display = 'none';
	document.getElementById('pk2').style.display = 'none';
	// Now turn on the select div
	var showDiv = 'pk' + no;
	document.getElementById(showDiv).style.display = 'block';
}

function showConcPk(no) {
	// First turn all of our images off
	document.getElementById('pk1img').src = '/i/pk-1off.gif';
	document.getElementById('pk2img').src = '/i/pk-2off.gif';
	document.getElementById('pk3img').src = '/i/pk-3off.gif';
	// Now turn on our selected image
	var turnMeOn = 'pk' + no + 'img';
	var turnImage = '/i/pk-' + no + 'on.gif';
	document.getElementById(turnMeOn).src = turnImage;

	// Now hide all our divs and then show the correct one
	document.getElementById('pk1').style.display = 'none';
	document.getElementById('pk2').style.display = 'none';
	document.getElementById('pk3').style.display = 'none';
	// Now turn on the select div
	var showDiv = 'pk' + no;
	document.getElementById(showDiv).style.display = 'block';
}
