/*DEFINE ROLLOVER IMAGES*/

Rollimage = new Array()

Rollimage[0] = new Image(67,30) 
Rollimage[0].src = "./images/btn-home.gif"

Rollimage[1] = new Image(67,30)
Rollimage[1].src = "./images/btn-home-over.gif"

Rollimage[2] = new Image(56,30) 
Rollimage[2].src = "./images/btn-news.gif"

Rollimage[3] = new Image(56,30)
Rollimage[3].src = "./images/btn-news-over.gif"

Rollimage[4] = new Image(56,30) 
Rollimage[4].src = "./images/btn-products.gif"

Rollimage[5] = new Image(56,30)
Rollimage[5].src = "./images/btn-products-over.gif"

Rollimage[6] = new Image(78,30) 
Rollimage[6].src = "./images/btn-specials.gif"

Rollimage[7] = new Image(78,30)
Rollimage[7].src = "./images/btn-specials-over.gif"

Rollimage[8] = new Image(71,30) 
Rollimage[8].src = "./images/btn-contact.gif"

Rollimage[9] = new Image(71,30)
Rollimage[9].src = "./images/btn-contact-over.gif"


/*HOME BUTTON*/

function SwapOutHome(){
document.Home.src = Rollimage[1].src;
return true;
}

function SwapBackHome(){
document.Home.src = Rollimage[0].src; 
return true;
}

/*NEWS BUTTON*/

function SwapOutNews(){
document.News.src = Rollimage[3].src;
return true;
}

function SwapBackNews(){
document.News.src = Rollimage[2].src; 
return true;
}

/*PRODUCTS BUTTON*/

function SwapOutProducts(){
document.Products.src = Rollimage[5].src;
return true;
}

function SwapBackProducts(){
document.Products.src = Rollimage[4].src; 
return true;
}

/*SPECIALS BUTTON*/

function SwapOutSpecials(){
document.Specials.src = Rollimage[7].src;
return true;
}

function SwapBackSpecials(){
document.Specials.src = Rollimage[6].src; 
return true;
}

/*CONTACT BUTTON*/

function SwapOutContact(){
document.Contact.src = Rollimage[9].src;
return true;
}

function SwapBackContact(){
document.Contact.src = Rollimage[8].src; 
return true;
}

