browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
  
if (browser) 
{
	normal = new MakeArray(1)
	over = new MakeArray(1)
	blurb = new MakeArray(1)
	                               
	window.status = "Welcome to Allied Communication"
	   	
	normal[1].src = "../images/return_to_main_out.gif"

	over[1].src = "../images/return_to_main_over.gif"
	                          		
	blurb[1] = "Main Website"
}

function MakeArray(n) 
{
	this.length = n
	for (var i = 1; i<=n; i++) 
		{
	        this[i] = new Image()
		}
	return this
}
function msover(num) 
{
	if ( browser) 
	{ 
		loadImage = "Image" + num;
		document.images[loadImage].src = over[num].src
		window.status = blurb[num]
		return true;
	}
}
function msout(num) 
{
	if ( browser)
	{
		loadImage = "Image" + num;
		document.images[loadImage].src = normal[num].src
		window.status = ""
		return true;
	}                   
}
