// JavaScript Document
function galImg(el) {
	var original=document.getElementById("gal_img");
	var source=el.href;
	original.src=source;
	return false;
}

function kolSwitch() {
		var koledar_area=document.getElementById('koledar_area');
		var koledar_butt=document.getElementById('koledar_butt');
		
		if (koledar_area.style.display=='none') {
			koledar_area.style.display='block';
			koledar_butt.innerHTML='<strong>- Koledar</strong>';
		}
		else {
			koledar_area.style.display='none';
			koledar_butt.innerHTML='<strong>+ Koledar</strong>';
		}
	
}
	
// POPUP WINDOW NOVICE
function novica(id_novice){
        window.open('novica.php?id='+id_novice,'','width=500,height=400,scrollbars=yes,toolbar=no,status=no,resizable=yes');
}

// Velika slika galerije
function velikaSlika(slika){
        window.open('velika_slika.php?slika='+slika,'','width=500,height=500,scrollbars=no,toolbar=no,status=no,resizable=yes, screenX=200,screenY=400,top=200,left=400');
}


/* SHOW ROOMS */

function showRooms(soba) {
	var sobe = new Array ('enoposteljna','dvoposteljna','poslovnezi','apartma', 'superior', 'vse');
	for (x in sobe)
	{
		document.getElementById(sobe[x]).style.display="none";
	}
	document.getElementById(soba).style.display="block";
	
}