
/*  define the menu behavoiur */
var pageName;
var timer;
/*
function frontPanel(page)

handle the mouse in/out and click events for hte table

arguments: page - name of menu to display
returns: none
*/
function frontPanel(page, action)
{
	
	
	var names = new Array('shop', 'web', 'health', 'service');
	
	document.getElementById(page).style.cursor = "pointer"
		if (action == 'click')
		{
			switch(page)
			{
				case "1":
					window.location.href = 'http://www.shopatdrg.co.nz';
					break;
				case "2":
					window.location.href = 'webdev.html';
					break;
				case "3":
					window.location.href = 'healthcheck.html';
					break;
				case "4":
				window.location.href = 'services.html';
					break;
			}
		}
}


/*
function openWin()
open popup windows for various special occasions

argument: file name, width, height
returns: none
*/
function openWin(name, width, height)
{
	name = name + '.html';
	window.open(name, "",'width='+width+',height='+height+',toolbars=no,menu=no,history=no');
}