if(document.images)
		{
var aboutoff = new Image();
aboutoff.src = "images/FP/About_off.jpg";

var abouton = new Image();
abouton.src = "images/FP/About_on.jpg";
	}
		{
var helpoff = new Image();
helpoff.src = "images/FP/Help_off.jpg";

var helpon = new Image();
helpon.src = "images/FP/Help_on.jpg";
	}
		{
var contactoff = new Image();
contactoff.src = "images/FP/Contact_off.jpg";

var contacton = new Image();
contacton.src = "images/FP/Contact_on.jpg";
	}

	
function buton1()
{
if (document.images)
document.images.about.src = abouton.src;
window.status = 'About Us' ;
}

function butoff1()
{
if (document.images)
document.images.about.src = aboutoff.src;
window.status = '' ;
}

function buton2()
{
if (document.images)
document.images.help.src = helpon.src;
window.status = 'How You Can Help' ;
}

function butoff2()
{
if (document.images)
document.images.help.src = helpoff.src;
window.status = '' ;
}

function buton3()
{
if (document.images)
document.images.contact.src = contacton.src;
window.status = 'Contact Us' ;
}

function butoff3()
{
if (document.images)
document.images.contact.src = contactoff.src;
window.status = '' ;
}

