     <!--

      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('http://www.cartoon-factory.com/images/button/stud_r.gif', 'http://www.cartoon-factory.com/images/button/stud_r.gif', 'Find Artwork from all the Major Studios!');
NavButtons['about_b'] = new NavButton('http://www.cartoon-factory.com/images/button/s_about.gif', 'http://www.cartoon-factory.com/images/button/s_about_o.gif', 'You Are Here Right Now');
NavButtons['order_b'] = new NavButton('http://www.cartoon-factory.com/images/button/s_order.gif', 'http://www.cartoon-factory.com/images/button/s_order_o.gif', 'Want To Order Animation Art? Do It Here!');
NavButtons['contact_b'] = new NavButton('http://www.cartoon-factory.com/images/button/s_contact.gif', 'http://www.cartoon-factory.com/images/button/s_contact_o.gif', 'Contact Us- by Phone, Fax, Snail or E-Mail!');
NavButtons['link_b'] = new NavButton('http://www.cartoon-factory.com/images/button/s_links.gif', 'http://www.cartoon-factory.com/images/button/s_links_o.gif', 'Links to Other Sites of Interest');
NavButtons['logo_b'] = new NavButton('http://www.cartoon-factory.com/images/button/logo_pur.gif', 'http://www.cartoon-factory.com/images/button/logo_pur_o.gif', 'The Cartoon Factory Animation Art Gallery Home');
      //-->
