
var banner1 = new Image();
banner1.src = "/images/expressyourself.gif";

var button1on = new Image();
button1on.src = "/images/about-glow.gif";

var button2on = new Image();
button2on.src = "/images/privacy-glow.gif";

var button3on = new Image();
button3on.src = "/images/rewards-glow.gif";

var button4on = new Image();
button4on.src = "/images/contact-glow.gif";

var button5on = new Image();
button5on.src = "/images/profile-glow.gif";

var button6on = new Image();
button6on.src = "/images/businesses3-glow.gif";

var button7on = new Image();
button7on.src = "/images/about-nonmem-glow.gif";

var button8on = new Image();
button8on.src = "/images/privacy-nonmem-glow.gif";

var button9on = new Image();
button9on.src = "/images/rewards-nonmem-glow.gif";

var button10on = new Image();
button10on.src = "/images/contact-nonmem-glow.gif";

var button11on = new Image();
button11on.src = "/images/businesses-nonmem-glow.gif";

var button12on = new Image();
button12on.src = "/images/businesses3-glow.gif";

var button1off = new Image();
button1off.src = "/images/about.gif";

var button2off = new Image();
button2off.src = "/images/privacy.gif";

var button3off = new Image();
button3off.src = "/images/rewards.gif";

var button4off = new Image();
button4off.src = "/images/contact.gif";

var button5off = new Image();
button5off.src = "/images/profile.gif";

var button6off = new Image();
button6off.src = "/images/businesses3.gif";

var button7off = new Image();
button7off.src = "/images/about-nonmem.gif";

var button8off = new Image();
button8off.src = "/images/privacy-nonmem.gif";

var button9off = new Image();
button9off.src = "/images/rewards-nonmem.gif";

var button10off = new Image();
button10off.src = "/images/contact-nonmem.gif";

var button11off = new Image();
button11off.src = "/images/businesses-nonmem.gif";

var button12off = new Image();
button12off.src = "/images/businesses3.gif";


function highlight(bannername,buttonname) {
	if (document.images) {
		var placeholder = "button" + buttonname;
		document[placeholder].src = eval("button" + buttonname + "on.src");
	}
}
function normal(buttonname) {
	if (document.images) {
		var placeholder = "button" + buttonname;
		document[placeholder].src = eval("button" + buttonname + "off.src");
	}
}
