var currentImg = "";
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

about_off				= new Image();
about_off.src			= "/templates/int/images/rollovers/about_off.gif";
about_on				= new Image();
about_on.src			= "/templates/int/images/rollovers/about_on.gif";
about_sel				= new Image();
about_sel.src			= "/templates/int/images/rollovers/about_sel.gif";

member_off				= new Image();
member_off.src			= "/templates/int/images/rollovers/member_off.gif";
member_on				= new Image();
member_on.src			= "/templates/int/images/rollovers/member_on.gif";
member_sel				= new Image();
member_sel.src			= "/templates/int/images/rollovers/member_sel.gif";

benefits_off			= new Image();
benefits_off.src		= "/templates/int/images/rollovers/benefits_off.gif";
benefits_on				= new Image();
benefits_on.src			= "/templates/int/images/rollovers/benefits_on.gif";
benefits_sel			= new Image();
benefits_sel.src		= "/templates/int/images/rollovers/benefits_sel.gif";

technology_off			= new Image();
technology_off.src		= "/templates/int/images/rollovers/technology_off.gif";
technology_on			= new Image();
technology_on.src		= "/templates/int/images/rollovers/technology_on.gif";
technology_sel			= new Image();
technology_sel.src		= "/templates/int/images/rollovers/technology_sel.gif";

integration_off			= new Image();
integration_off.src		= "/templates/int/images/rollovers/integration_off.gif";
integration_on			= new Image();
integration_on.src		= "/templates/int/images/rollovers/integration_on.gif";
integration_sel			= new Image();
integration_sel.src		= "/templates/int/images/rollovers/integration_sel.gif";

howItWorks_off			= new Image();
howItWorks_off.src		= "/templates/int/images/rollovers/howItWorks_off.gif";
howItWorks_on			= new Image();
howItWorks_on.src		= "/templates/int/images/rollovers/howItWorks_on.gif";
howItWorks_sel			= new Image();
howItWorks_sel.src		= "/templates/int/images/rollovers/howItWorks_sel.gif";

otherServices_off		= new Image();
otherServices_off.src	= "/templates/int/images/rollovers/otherServices_off.gif";
otherServices_on		= new Image();
otherServices_on.src	= "/templates/int/images/rollovers/otherServices_on.gif";
otherServices_sel		= new Image();
otherServices_sel.src	= "/templates/int/images/rollovers/otherServices_sel.gif";

started_off				= new Image();
started_off.src			= "/templates/int/images/rollovers/started_off.gif";
started_on				= new Image();
started_on.src			= "/templates/int/images/rollovers/started_on.gif";
started_sel				= new Image();
started_sel.src			= "/templates/int/images/rollovers/started_sel.gif";

clients_off				= new Image();
clients_off.src			= "/templates/int/images/rollovers/clients_off.gif";
clients_on				= new Image();
clients_on.src			= "/templates/int/images/rollovers/clients_on.gif";
clients_sel				= new Image();
clients_sel.src			= "/templates/int/images/rollovers/clients_sel.gif";

who_off					= new Image();
who_off.src				= "/templates/int/images/rollovers/who_off.gif";
who_on					= new Image();
who_on.src				= "/templates/int/images/rollovers/who_on.gif";
who_sel					= new Image();
who_sel.src				= "/templates/int/images/rollovers/who_sel.gif";

faq_off					= new Image();
faq_off.src				= "/templates/int/images/rollovers/faq_off.gif";
faq_on					= new Image();
faq_on.src				= "/templates/int/images/rollovers/faq_on.gif";
faq_sel					= new Image();
faq_sel.src				= "/templates/int/images/rollovers/faq_sel.gif";

function img_act(imgName) 
{
	if(currentImg != imgName)
	{
        imgOn = eval(imgName + "_on.src");
        document [imgName].src = imgOn;
	}
}

function img_inact(imgName) 
{
	if(currentImg != imgName)
	{
        imgOff = eval(imgName + "_off.src");
        document [imgName].src = imgOff;
    }
}

function img_sel(imgName)
{
	// Get the previous and current selected image
	temp = currentImg;
	currentImg = imgName;
	
	// Activate the current selected image
	imgOn = eval(currentImg + "_sel.src");
	document [imgName].src = imgOn;

	// De-Activate the previous selected image	
	if(temp != "")
		img_inact(temp);
}