var clicked = '';
var tabHovering = '';
var timeout = 300;
var tabs = {
	'default' : ['#054f8d', ''],
	'property' : ['#054f8d', 'http://www.pccproperty.co.uk/'],
	'collease' : ['#1a6098', 'http://www.collease.com/'],
	'norfolk' : ['#3879a8', 'http://www.brandofbeccles.co.uk/'],
	'easystore' : ['#5c98bc', 'http://www.easy-store247.co.uk/'],
	'polgain' : ['#82b7d0', 'http://www.polgain.co.uk/'],
	'eastern' : ['#a5d4e3', 'TBI'],
	'capital' : ['#c4edf4', 'http://www.norfolktruckandvan.co.uk/'],
	'iso9000' : ['#c4edf4', 'http://www.colbygroup.co.uk/iso9000/'],
	'documents' : ['#c4edf4', 'http://www.colbygroup.co.uk/documents/'],
	'extranet' : ['#c4edf4', 'TBI']
};

function tabClick(id) {
	if (id != 'default') {
		if (id == 'eastern') {
			alert('The Eastern Hardware Website is Currently Under Construction');
		}
		else if (id == 'extranet') {
			alert('The Extranet Website is Currently Under Construction');
		}
		else {
			window.document.location.href = tabs[id][1];
		}
	}
	setStyles(id);
}

function checkSetHover(id) {
	if (tabHovering == id) {
		setInactive();
		setStyles(id);		
	}
}

function tabHover(id) {
	clicked = id;
	tabHovering = id;
	window.clear
	window.setTimeout('checkSetHover("'+id+'")', timeout);
}

function tabOut(id) {
	tabHovering = '';
}

function setStyles(id) {
	$('main').className = 'main_'+id;
	if (id != 'default') {
		$('menu_'+id).className = 'menu_'+id+'_active';
	}
	$('footer').className = 'footer_'+id;
	$('footer_connector').style.backgroundColor = tabs[id][0];	// Hack: (IE6 redraw error)
	$('footer_content_'+id).style.display = 'block';
	$('footer_connector').className = 'footer_connector_'+id;
	window.document.body.style.backgroundColor = tabs[id][0];
}

function setInactive() {
	$('footer_content_default').style.display = 'none';
	$H(tabs).each(function(element) {
		if (element.key != 'default' && element.key != 'iso9000' && element.key != 'extranet' && element.key != 'documents' ) {
			$('menu_'+element.key).className = 'menu_'+element.key;
			$('footer_content_'+element.key).style.display = 'none';
		}
	});
}

function quickSelectChange() {
	var quickSelect = $('quickSelect');
	
	var value = quickSelect.options[quickSelect.selectedIndex].value;
	if (value != '') {
		if (tabs[value][1] == 'TBI') {
			alert('The '+quickSelect.options[quickSelect.selectedIndex].text+' Website is Currently Under Construction');
		}
		else {
			window.document.location.href = tabs[value][1];
		}
	}
}

