// ActionScript for top nav
// swap nav images:
                               if (document.images) {
                               home_off = new Image(106,21); home_off.src = "images/subnav/home_off.gif";
                               home_on = new Image(106,21); home_on.src = "images/subnav/home_on.gif";
							   
							   products_off = new Image(106,21); products_off.src = "images/subnav/products_off.gif";
                               products_on = new Image(106,21); products_on.src = "images/subnav/products_on.gif";
                               
                               where_off = new Image(155,21); where_off.src = "images/subnav/where_off.gif";
                               where_on = new Image(155,21); where_on.src = "images/subnav/where_on.gif";
                               
                               who_off = new Image(145,21); who_off.src = "images/subnav/who_off.gif";
                               who_on = new Image(145,21); who_on.src = "images/subnav/who_on.gif";
                               
                               contact_off = new Image(85,21); contact_off.src = "images/subnav/contact_off.gif";
                               contact_on = new Image(85,21); contact_on.src = "images/subnav/contact_on.gif";
                               
                               standard_off = new Image(142,21); standard_off.src = "images/subnav/standard_off.gif";
                               standard_on = new Image(142,21); standard_on.src = "images/subnav/standard_on.gif";
                               
                               press_off = new Image(46,21); press_off.src = "images/subnav/press_off.gif";
                               press_on = new Image(46,21); press_on.src = "images/subnav/press_on.gif";
                               
                               faq_off = new Image(32,21); faq_off.src = "images/subnav/faq_off.gif";
                               faq_on = new Image(32,21); faq_on.src = "images/subnav/faq_on.gif";
                               
                               pink_off = new Image(101,41); pink_off.src = "images/subnav/pink_off.gif";
                               pink_on = new Image(101,41); pink_on.src = "images/subnav/pink_on.gif";
                               }
                               
                               function hiLite(imgName,imgObjName) {
                               if (document.images) {
                                 document.images[imgName].src = eval(imgObjName + ".src");
                               }}


