// JavaScript Document
  if (document.images)
   {
     image_off= new Image(350,251);
     image_off.src="calendar_background_thumbs/jan_2010.jpg";  

     image1= new Image(350,251);
     image1.src="calendar_background_thumbs/jan_2010.jpg";
     image2= new Image(350,251);
     image2.src="calendar_background_thumbs/feb_2010.jpg";  
     image3= new Image(350,251);
     image3.src="calendar_background_thumbs/mar_2010.jpg";  
     image4= new Image(350,251);
     image4.src="calendar_background_thumbs/apr_2010.jpg"; 
	 image5= new Image(350,251);
     image5.src="calendar_background_thumbs/may_2010.jpg";
	 image6= new Image(350,251);
     image6.src="calendar_background_thumbs/june_2010.jpg";
	 image7= new Image(350,251);
     image7.src="calendar_background_thumbs/july_2010.jpg";
	 image8= new Image(350,251);
     image8.src="calendar_background_thumbs/aug_2010.jpg";
	 image9= new Image(350,251);
     image9.src="calendar_background_thumbs/sept_2010.jpg";
	 image10= new Image(350,251);
     image10.src="calendar_background_thumbs/oct_2010.jpg";
	  image11= new Image(350,251);
     image11.src="calendar_background_thumbs/nov_2010.jpg";
	 image12= new Image(350,251);
     image12.src="calendar_background_thumbs/dec_2010.jpg";
	 
   }

function change1(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }
