﻿// JScript File for Roll Over Images

// --------------- HOME BUTTON --------------- //
  home_img_out = new Image();
  home_img_out.src = "Images/b-home.jpg";

  home_img_over = new Image();
  home_img_over.src = "Images/b-home-mo.jpg";
      
  function display_home(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }

// --------------- ABOUT US BUTTON --------------- //
  aboutus_img_out = new Image();
  aboutus_img_out.src = "Images/b-aboutus.jpg";

  aboutus_img_over = new Image();
  aboutus_img_over.src = "Images/b-aboutus-mo.jpg";
      
  function display_aboutus(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }

// --------------- BOOK SEARCH BUTTON --------------- //
  search_img_out = new Image();
  search_img_out.src = "Images/Site_Images/booksearch_b.gif";

  search_img_over = new Image();
  search_img_over.src = "Images/Site_Images/booksearch_r.gif";
      
  function display_search(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }
  
  
// --------------- OUR AUTHORS BUTTON --------------- //
  authors_img_out = new Image();
  authors_img_out.src = "Images/b-ourauthors.jpg";

  authors_img_over = new Image();
  authors_img_over.src = "Images/b-ourauthors-mo.jpg";
      
  function display_authors(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }

  // --------------- Regular/Large Print BUTTON --------------- //
  regularprint_img_out = new Image();
  regularprint_img_out.src = "Images/b-reg-largeprint.jpg";

  regularprint_img_over = new Image();
  regularprint_img_over.src = "Images/b-reg-largeprint-mo.jpg";
      
  function display_regularprint(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }

// --------------- CONTACT US BUTTON --------------- //
  contactus_img_out = new Image();
  contactus_img_out.src = "Images/b-contactus.jpg";

  contactus_img_over = new Image();
  contactus_img_over.src = "Images/b-contactus-mo.jpg";
      
  function display_contactus(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }
  
  
// --------------- BOOK DETAILS BUTTON --------------- //
  bookdetail_img_out = new Image();
  bookdetail_img_out.src = "Images/Site_Images/details_b.gif";

  bookdetail_img_over = new Image();
  bookdetail_img_over.src = "Images/Site_Images/details_r.gif";
      
  function display_bookdetail(imgName, imgUrl) {
    if (document.images && typeof imgUrl != 'undefined')
      document[imgName].src = imgUrl.src;
  }