﻿//Image preloading script
function ImagePreloading() 
{
     var i = 0;

     imageObj = new Image();

     images = new Array();
     images[0]="/images/gyrotonic/gyrotonic_logo.gif"
     images[1]="/images/gyrotonic/gyrotonic_title.gif"
     images[2]="/Db/gyrotonic/content/images/buttons/button1_a.gif"
     images[3]="/Db/gyrotonic/content/images/buttons/button1_b.gif"
     images[4]="/Db/gyrotonic/content/images/buttons/button2_a.gif"
     images[5]="/Db/gyrotonic/content/images/buttons/button2_b.gif"
     images[6]="/Db/gyrotonic/content/images/buttons/button3_a.gif"
     images[7]="/Db/gyrotonic/content/images/buttons/button3_b.gif"
     images[8]="/Db/gyrotonic/content/images/front_photo.jpg"   
     images[9]="/images/gyrotonic/green_line.gif"
     images[10]="/images/gyrotonic/header_bg_chrome.gif"
     images[11]="/images/gyrotonic/header_bg.gif"
 
     for(i=0; i<=11; i++) 
     {
          imageObj.src=images[i];
     }

} 

//-----------------------------------------------------------------------------------------------
// NEWS ARCHIEVES EVENT HANLDERS
//-----------------------------------------------------------------------------------------------


function ChangeYear(position){

	var strYEAR  = document.TheArchiveForm.cboLeto.options[document.TheArchiveForm.cboLeto.selectedIndex].value;
	

	window.location.href = "/default.asp?page_id=" + position + '&YE=' + strYEAR 

}

function ChangeMonth(position){

	var strYEAR  = document.TheArchiveForm.cboLeto.options[document.TheArchiveForm.cboLeto.selectedIndex].value;
	var strMONTH = document.TheArchiveForm.cboMesec.options[document.TheArchiveForm.cboMesec.selectedIndex].value;   	

	window.location.href = "/default.asp?page_id=" + position + '&YE=' + strYEAR + '&MO=' + strMONTH;

}

