<!-- see which image name is found in document title
// This routine sets the down position of the navigation buttons
// depending upon a unique keyword in the page title
if ((checkTitle("The Galleries") != -1)) { 
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Glass Gallery Item") != -1)) {
document.images["gallerytext_glass"].src="../../images/gallery_images/gallery-text_glass_on.gif"; 
document.images["gallery"].src="../../images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Canvas Gallery Item") != -1)) {
document.images["gallerytext_canvas"].src="../../images/gallery_images/gallery-text_canvas_on.gif";
document.images["gallery"].src="../../images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Objects Gallery Item") != -1)) {
document.images["gallerytext_objects"].src="../../images/gallery_images/gallery-text_objects_on.gif"; 
document.images["gallery"].src="../../images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Prints Gallery Item") != -1)) {
document.images["gallerytext_prints"].src="../../images/gallery_images/gallery-text_prints_on.gif"; 
document.images["gallery"].src="../../images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Commissions Gallery Item") != -1)) {
document.images["gallerytext_commissions"].src="../../images/gallery_images/gallery-text_commissions_on.gif"; 
document.images["gallery"].src="../../images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Glass Gallery") != -1)) {
document.images["gallerytext_glass"].src="images/gallery_images/gallery-text_glass_on.gif"; 
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Canvas Gallery") != -1)) {
document.images["gallerytext_canvas"].src="images/gallery_images/gallery-text_canvas_on.gif";
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Objects Gallery") != -1)) {
document.images["gallerytext_objects"].src="images/gallery_images/gallery-text_objects_on.gif"; 
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Prints Gallery") != -1)) {
document.images["gallerytext_prints"].src="images/gallery_images/gallery-text_prints_on.gif"; 
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Commissions Gallery") != -1)) {
document.images["gallerytext_commissions"].src="images/gallery_images/gallery-text_commissions_on.gif"; 
document.images["gallery"].src="images/nav_images/gallery_on.gif"; }

else if ((checkTitle("Welcome") != -1)) {
document.images["home"].src="images/nav_images/home_on.gif"; }

else if ((checkTitle("About") != -1)) {
document.images["about"].src="images/nav_images/about_on.gif"; }

else if ((checkTitle("Contact") != -1)) {
document.images["contact"].src="images/nav_images/contact_on.gif"; }

else if ((checkTitle("Resume") != -1)) {
document.images["abouttext_resume"].src="images/about_images/about-text_resume_on.gif"; 
document.images["about"].src="images/nav_images/about_on.gif"; }

else if ((checkTitle("Representation") != -1)) {
document.images["abouttext_gallery"].src="images/about_images/about-text_gallery_on.gif"; 
document.images["about"].src="images/nav_images/about_on.gif"; }

else if ((checkTitle("Biography") != -1)) {
document.images["abouttext_bio"].src="images/about_images/about-text_bio_on.gif"; 
document.images["about"].src="images/nav_images/about_on.gif"; }

else if ((checkTitle("Statement") != -1)) {
document.images["abouttext_statement"].src="images/about_images/about-text_statement_on.gif"; 
document.images["about"].src="images/nav_images/about_on.gif"; }

else if ((checkTitle("Events") != -1)) {
document.images["events"].src="images/nav_images/events_on.gif"; }

else if ((checkTitle("Upcoming") != -1)) {
document.images["eventstext_upcoming"].src="images/events_images/events-text_upcoming_on.gif"; 
document.images["events"].src="images/nav_images/events_on.gif"; }

else if ((checkTitle("Previous") != -1)) {
document.images["eventstext_previous"].src="images/events_images/events-text_previous_on.gif"; 
document.images["events"].src="images/nav_images/events_on.gif"; }

else if ((checkTitle("Press") != -1)) {
document.images["eventstext_press"].src="images/events_images/events-text_press_on.gif"; 
document.images["events"].src="images/nav_images/events_on.gif"; }
//-->

