﻿<!--
//rollover & preload
var cm = new Array();
cm[0] = new Image(); cm[0].src = "DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_0_over.gif";
cm[1] = new Image(); cm[1].src = "DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_1_over.gif";
cm[2] = new Image(); cm[2].src = "DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_2_over.gif";
cm[3] = new Image(); cm[3].src = "DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_3_over.gif";

nav0on = new Image();
nav0on.src = cm[0].src;  
nav0off = new Image();
nav0off.src = 	"DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_0.gif";

nav1on = new Image();
nav1on.src = cm[1].src;  
nav1off = new Image();
nav1off.src = 	"DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_1.gif";

nav2on = new Image();
nav2on.src = cm[2].src; 
nav2off  = new Image();
nav2off.src =	"DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_2.gif";

nav3on= new Image();
nav3on.src = cm[3].src;  
nav3off=new Image();
nav3off.src= 	"DesignTemplates/Herbos_Plava_Kontakt/images/_gui/section_button_3.gif";

function MouseIn(imgName){
     imgOn=eval(imgName + "on.src");
     document[imgName].src= imgOn;  
	 return true;	 
}
function MouseOut(imgName){
    imgOff=eval(imgName + "off.src");  
    document[imgName].src= imgOff;  
	return true;
}
// end rollover & preload
//-->
