<!--
	function getWindowHeight() {
		var windowHeight = 0;
		if (typeof(window.innerHeight) == 'number') {
			windowHeight = window.innerHeight;
		}
		else {
			if (document.documentElement && document.documentElement.clientHeight) {
				windowHeight = document.documentElement.clientHeight;
			}
			else {
				if (document.body && document.body.clientHeight) {
					windowHeight = document.body.clientHeight;
				}
			}
		}
		return windowHeight;
	}
	function setContent() {
		if (document.getElementById) {
			var windowHeight = getWindowHeight();
			if (windowHeight > 0) {
				var contentElement = document.getElementById('content');
				var contentHeight = contentElement.offsetHeight;
				var contentElementLink = document.getElementById('links');
				var contentHeightLink = contentElementLink.offsetHeight;
				if (windowHeight - contentHeight > 0) {
					contentElement.style.position = 'relative';
					contentElement.style.top = ((windowHeight / 2) - (contentHeight / 2)) + 'px';
					contentElementLink.style.position = 'relative';
					contentElementLink.style.top = ((windowHeight / 2) - (contentHeight / 2)) + 'px';
				}
				else {
					contentElement.style.position = 'static';
				}
			}
		}
	}
	
var i = 0;
var Speed = 100;
TextInput = new Object();
TotalTextInput = 2;
TextInput[0]= "Welcome to Aluminium Access Products";
TextInput[1]= "Providing tallescopes or work platforms";
TextInput[2]= "and aluminium scaffolding products anywhere in the UK";
var TextNumber = -1;
var HelpText = "";
var WaitSpace=" "; 
for (i =0; i <= TotalTextInput; i++) { 
TextInput[i] += WaitSpace; }
var TimerID; 
var TimerSet = false;
function startBanner(form) { 
if (!TimerSet) { 
TimerSet = true; banner(); } }
function banner() { 
Text=rollMessage(); 
TimerId = setTimeout("banner()", Speed); window.status=Text; }
function rollMessage() { 
Wait=false; if (HelpText.substring((i++)-1,i) == " ") { i++; } 
if (i >= HelpText.length+1) { 
i=0; if (TextNumber >= TotalTextInput) { 
TextNumber = 0 ; } 
else { 
TextNumber++; } 
initBanner(); } 
Text = HelpText.substring(0,i); return (Text); }
function initBanner() { 
Text = TextInput[TextNumber]; HelpText = Text; startBanner(); }
startBanner();
	window.onload = function() {
		setContent();
	if (parent.frames.length > 0) {parent.location.href = self.document.location;}
	}
	window.onresize = function() {
		setContent();
	}
	//-->