<!--



function showDate() {
	now = new Date();
	year = now.getFullYear();
	month = now.getMonth()+1;
	day = now.getDate();
	document.write(day+'-'+month+'-'+year);
}


function img(id,name){
     if (document.images){
       if (document.images[id]){document.images[id].src=eval(name+".src");
       } else {
         if (document.layers){ 
           for (i=0; i < document.layers.length; i++) {
             if (document.layers[i].document.images[id]) {
             document.layers[i].document.images[id].src=eval(name+".src");
             break;
             }
           }
         }
       }
     }
   }

function preload(imgObj,imgSrc) {
	if(document.images) 
		eval(imgObj+' = new Image();');
		eval(imgObj+'.src = "'+imgSrc+'";');
}

function currentCat(whichOne){
	eval(whichOne+'.src = '+whichOne+'_on.src');
	eval(whichOne+'_off.src = '+whichOne+'_on.src');	
}


//-->
