<!--
var root = "";

if (window.location.href.indexOf("payment") != -1) {
 root = "../";
}
 
if (document.images) {
	img1on = new Image(); img1on.src = root + "_images/buttons/about_on.gif";   
	img1off = new Image(); img1off.src = root + "_images/buttons/about_off.gif"; 
	img2on = new Image(); img2on.src = root + "_images/buttons/services_on.gif";   
	img2off = new Image(); img2off.src = root + "_images/buttons/services_off.gif"; 
	img3on = new Image(); img3on.src = root + "_images/buttons/portfolio_on.gif";   
	img3off = new Image(); img3off.src = root + "_images/buttons/portfolio_off.gif"; 
	img4on = new Image(); img4on.src = root + "_images/buttons/testimonials_on.gif";   
	img4off = new Image(); img4off.src = root + "_images/buttons/testimonials_off.gif"; 
	img5on = new Image(); img5on.src = root + "_images/buttons/contact_on.gif";   
	img5off = new Image(); img5off.src = root + "_images/buttons/contact_off.gif"; 
}


function rollOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }}
function rollOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }}
// -->
