      <!--
      var NavButtons = new Array();
var supported = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;
function NavButton(defsrc, hotsrc, txt){
if (supported){
this['default'] = new Image();
this['default'].src = defsrc;
this['hot'] = new Image();
this['hot'].src = hotsrc;
}
this['text'] = txt;
}
function RollOver(imgname){
if (supported){
document.images[imgname].src = NavButtons[imgname]['hot'].src;
}
StatusOver(imgname);
}
function RollOut(imgname){
if (supported){
document.images[imgname].src = NavButtons[imgname]['default'].src;
}
window.status = '';
}
function StatusOver(imgname) {
window.status = NavButtons[imgname]['text'];
}
function StatusOut() {
window.status = '';
}
NavButtons['studio_b'] = new NavButton('images/button/e_stud.gif', 'images/button/e_stud_o.gif', 'Find Artwork from all the Major Studios!');
NavButtons['about_b'] = new NavButton('images/button/e_about.gif', 'images/button/e_about_o.gif', 'Learn All About Animation Artwork!');
NavButtons['order_b'] = new NavButton('images/button/e_order.gif', 'images/button/e_order_o.gif', 'Want To Order Animation Art? Do It Here!');
NavButtons['contact_b'] = new NavButton('images/button/e_contact.gif', 'images/button/e_contact_o.gif', 'Contact Us- by Phone, Fax, Snail or E-Mail!');
NavButtons['link_b'] = new NavButton('images/button/e_links.gif', 'images/button/e_links_o.gif', 'Links to Other Sites of Interest');
NavButtons['logo_b'] = new NavButton('images/button/logo_pink.gif', 'images/button/logo_pink_o.gif', 'The Cartoon Factory Animation Art Gallery Home');
      //-->
