<!--
               
               if (document.images) {
 				
			   img01icon = new Image();
               img01icon.src = "images/date_icon.gif";
               img02icon = new Image();
               img02icon.src = "images/location_icon.gif";
               img03icon = new Image();
               img03icon.src = "images/tickets_icon.gif";
               img04icon = new Image();
               img04icon.src = "images/music_icon.gif";
               img05icon = new Image();
               img05icon.src = "images/info_icon.gif";
               
               img01on = new Image();
               img01on.src = "images/date_on.gif";
               img02on = new Image();
               img02on.src = "images/location_on.gif";
               img03on = new Image();
               img03on.src = "images/tickets_on.gif";
               img04on = new Image();
               img04on.src = "images/music_on.gif";
               img05on = new Image();
               img05on.src = "images/info_on.gif";
              
               img01off = new Image();
               img01off.src = "images/date_off.gif";
               img02off = new Image();
               img02off.src = "images/location_off.gif";
               img03off = new Image();
               img03off.src = "images/tickets_off.gif";
               img04off = new Image();
               img04off.src = "images/music_off.gif";
               img05off = new Image();
               img05off.src = "images/info_off.gif";
              
               }

       function imgAct(imgName) {
               if (document.images) {
               document[imgName].src = eval(imgName + "on.src");
			   document.icon.src = eval(imgName + "icon.src");
               }
       }

       function imgInact(imgName) {
               if (document.images) {
               document[imgName].src = eval(imgName + "off.src");
               }
       }
	   
	          function imgIn(imgName) {
               if (document.images) {
               document.icon.src = eval(imgName + "icon.src");
               }
       }
// -->

