// spremi ime trenutne stranice
loc = window.location + "";
var stranica = (loc.substring( loc.lastIndexOf('/') + 1 , loc.lastIndexOf('.') ));

function toggleElement(id){
	if (document.getElementById(id).style.display == 'block'){
		document.getElementById(id).style.display = 'none';	}
	else	{
		document.getElementById(id).style.display='block'; }
}

function initPage(){ // selektiraj trenutnu stanicu
	if (stranica.search('-') != -1) {
		glavna_stranica = (stranica.substring( 0, stranica.indexOf('-') ))
	} else glavna_stranica = stranica;
	frames['page_menu'].document.getElementById(glavna_stranica).className='menu_selected';
}	

function MM_openBrWindow(theURL,winName,features) { // open in new window Function
  window.open(theURL,winName,features);
}