/*
' *******************************************************************************************************************************************
'  Page:	    clientsides.js
'  Author:	    Rusty Swayne (rusty@mindfly.com)
'  Date:	    7/15/2003
'  Desc:	    
'
'  Updates:    
' *******************************************************************************************************************************************
*/

function highlighter(name, action)
// Handles nav button rollovers
{
	//alert(name);
	if (document.images)
	{
		if(action == "on") 
		{
			document.images[name].src = eval(name + "_f2.src");
			if(name != "home")
				document.images["photo_" + name].src = eval("photo_" + name + "_f2.src");
		}
		else
		{
			document.images[name].src = eval(name + ".src");
			if(name != "home")
				document.images["photo_" + name].src = eval("photo_" + name + ".src");
		}
	}
}

// standard images
var home		=	new Image();
	home.src	=	"images/nav/bt_home.gif";

var security	=	new Image();
security.src	=	"images/nav/bt_security.gif";

var answering	=	new Image();
answering.src	=	"images/nav/bt_answering.gif";

var janitorial	=	new Image();
janitorial.src	=	"images/nav/bt_janitorial.gif";

var temp		=	new Image();
temp.src		=	"images/nav/bt_temp.gif";

var employment	=	new Image();
employment.src	=	"images/nav/bt_employment.gif";

var contact		=	new Image();
contact.src		=	"images/nav/bt_contact.gif";

// standard photos
var photo_security	=	new Image();
photo_security.src	=	"images/nav/photo_security.jpg";
var photo_answering	=	new Image();
photo_answering.src	=	"images/nav/photo_answering.jpg";
var photo_janitorial	=	new Image();
photo_janitorial.src	=	"images/nav/photo_janitorial.jpg";
var photo_temp	=	new Image()
photo_temp.src	=	"images/nav/photo_temp.jpg";
var photo_employment	=	new Image();
photo_employment.src	=	"images/nav/photo_employment.jpg";
var photo_contact	=	new Image()
photo_contact.src	=	"images/nav/photo_contact.jpg";



// highlighed images
var home_f2		=	new Image();
	home_f2.src	=	"images/nav/bt_home_f2.gif";

var security_f2	=	new Image();
security_f2.src	=	"images/nav/bt_security_f2.gif";

var answering_f2	=	new Image();
answering_f2.src	=	"images/nav/bt_answering_f2.gif";

var janitorial_f2	=	new Image();
janitorial_f2.src	=	"images/nav/bt_janitorial_f2.gif";

var temp_f2		=	new Image();
temp_f2.src		=	"images/nav/bt_temp_f2.gif";

var employment_f2	=	new Image();
employment_f2.src	=	"images/nav/bt_employment_f2.gif";

var contact_f2		=	new Image();
contact_f2.src		=	"images/nav/bt_contact_f2.gif";

// highlighted photos
var photo_security_f2	=	new Image();
photo_security_f2.src	=	"images/nav/photo_security_f2.jpg";
var photo_answering_f2	=	new Image();
photo_answering_f2.src	=	"images/nav/photo_answering_f2.jpg";
var photo_janitorial_f2	=	new Image();
photo_janitorial_f2.src	=	"images/nav/photo_janitorial_f2.jpg";
var photo_temp_f2	=	new Image()
photo_temp_f2.src	=	"images/nav/photo_temp_f2.jpg";
var photo_employment_f2	=	new Image();
photo_employment_f2.src	=	"images/nav/photo_employment_f2.jpg";
var photo_contact_f2	=	new Image()
photo_contact_f2.src	=	"images/nav/photo_contact_f2.jpg";




