function buildToolbar()
{
	var toolbar = document.getElementById('home-banner');
	var items = new Array('Contact','Support','Build PC','PC Repairs','Shop Online','Merchant');
	var links = new Array('contact.php','support/','computer-builder/','computer-repairs','shop/','http://merchant.bluedrop.com.au/');
	
	for(var i=0; i<items.length;i++)
	{
		var newitem = document.createElement('div');
		newitem.className = "banner-item";
		newitem.onmouseover = function() { this.className = 'banner-item-over'; };
		newitem.onmouseout = function() { this.className = 'banner-item'; };
		if(i == 5)
		{
			newitem.alt = links[i];
		}
		else
		{
			newitem.alt = 'http://www.bluedrop.com.au/' + links[i];
		}
		newitem.onclick = function() { window.location = this.alt; };
		newitem.appendChild(document.createTextNode(items[i]));
		toolbar.appendChild(newitem);
	}
	
	//Preload images
	var newimage = document.createElement('img');
	newimage.src = "http://www.bluedrop.com.au/images/logo-std.gif";
	var newimage = document.createElement('img');
	newimage.src = "http://www.bluedrop.com.au/images/logo-glow.gif";	
	
	var homelink = document.createElement('div');
	homelink.className = "homelink";
	homelink.onmouseover = function() { this.className = 'homelink-over'; };
	homelink.onmouseout = function() { this.className = 'homelink'; };	
	homelink.onclick = function() {document.location = "http://www.bluedrop.com.au/index.php"; };
	toolbar.appendChild(homelink);
	
}
