// JavaScript Document
  quiltPath= "/images/featureQuilts/Q3_2007/";
  if (document.images)
   {
	 
     news_imageon= new Image(300,120);
     news_imageon.src=quiltPath + "news_image_top.jpg";
	 feature_news_imageon = new Image(300,120);
	 feature_news_imageon.src=quiltPath + "news_image_top.jpg";
	   
	
     news_imageoff= new Image(300,120);
     news_imageoff.src=quiltPath + "news_imagefade.jpg";
	 
	 feature_news_imagehover= new Image(300,120);
     feature_news_imagehover.src=quiltPath + "news_hover.gif";
	 
     shows_imageon= new Image(300,120);
     shows_imageon.src=quiltPath + "shows_image_top.jpg";  
	 feature_shows_imageon= new Image(300,120);
	 feature_shows_imageon.src=quiltPath + "shows_image_top.jpg";
	 
     shows_imageoff= new Image(300,120);
     shows_imageoff.src=quiltPath + "shows_imagefade.jpg";
	 
	 feature_shows_imagehover= new Image(300,120);
     feature_shows_imagehover.src=quiltPath + "shows_hover.gif";
	 
     contest_imageon= new Image(300,120);
     contest_imageon.src=quiltPath + "contests_image_top.jpg";  
	 feature_contest_imageon= new Image(300,120);
	 feature_contest_imageon.src=quiltPath + "contests_image_top.jpg";  

     contest_imageoff= new Image(300,120);
     contest_imageoff.src=quiltPath + "contests_imagefade.jpg";
	 
	 feature_contest_imagehover= new Image(300,120);
     feature_contest_imagehover.src=quiltPath + "contests_hover.gif";
	 
     about_imageon= new Image(300,120);
     about_imageon.src=quiltPath + "about_image_top.jpg";  
     feature_about_imageon= new Image(300,120);
	 feature_about_imageon.src=quiltPath + "about_image_top.jpg";  
	 
     about_imageoff= new Image(300,120);
     about_imageoff.src=quiltPath + "about_imagefade.jpg";

	 feature_about_imagehover= new Image(300,120);
     feature_about_imagehover.src=quiltPath + "about_hover.gif";

     home_imageon= new Image(300,120);
     home_imageon.src=quiltPath + "about_image_top.jpg"; 
	 feature_home_imageon =new Image(300,120);
	 feature_home_imageon.src=quiltPath + "about_image_top.jpg"; 

     home_imageoff= new Image(300,120);
     home_imageoff.src=quiltPath + "about_hover.gif";
	 
	 feature_home_imagehover= new Image(300,120);
     feature_home_imagehover.src="images/image_hover.gif";	 
	 
	 arrow_image1on = new Image(20,20);
	 arrow_image1on.src="images/yellowArrow.gif";
	 
	 arrow_image1off = new Image(20,20);
	 arrow_image1off.src="images/whiteArrow.gif";
	 
	 arrow_image2on = new Image(20,20);
	 arrow_image2on.src="images/yellowArrow.gif";
	 
	 arrow_image2off = new Image(20,20);
	 arrow_image2off.src="images/whiteArrow.gif";	 
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
	  
  
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff; 

    }
 }
 
 function hover(imgName)
 {
   if (document.images)
    {
      imgHover=eval(imgName + "hover.src");
      document[imgName].src= imgHover;

    }
 }

 function getQuilt(imgName)
 {
   return('"' + quiltPath + '/' + imgName +'"');
 }