<!--
function displayTip() {
	var element = document.getElementById('tip');
	var tips = new Array();
	
	tips[0]="Consider how often you will need access to your things. You may save money by choosing a location a little further away.";
	tips[1]="Save money by choosing a storage room on an upper floor. It will mean using the lift - but does that matter?";
	tips[2]="Make the best use of the space. Boxes are easy to stack but make sure they are filled - even if you need to pad them out with paper or cloth.";
	tips[3]="Book just the the space you need. Use the SpaceFinder calculator to find out just how much you need.";
	tips[4]="Choose a storage facility with the facilities you need. SpaceFinder lets you compare storage sites at a glance.";
	tips[5]="Share with friends. Are there friends, relatives or neighbours that need to store things  would like to share the space with you?";
	
	var randomNum = Math.floor(Math.random()*tips.length);
	element.innerHTML = tips[randomNum];
}

displayTip();
//-->
