// JavaScript Document

img_src = Array(
"/images/button_submit_hover.jpg",
"/images/menu_book_hover.jpg",
"/images/menu_company_hover.jpg",
"/images/menu_contact_hover.jpg",
"/images/menu_recycling_hover.jpg",
"/images/menu_services_hover.jpg",
"/images/top_menu_item_sel_bgr.jpg"
);
 
img_array = new Array();
 
for (counter in img_src) {
    img_array[counter] = new Image();
    img_array[counter].src = img_src[counter];
}
