function misOver(ovo)
{
if (ovo.style.backgroundColor==''){
	ovo.style.backgroundColor = 'white';
	ovo.style.color = '#00112F';
	ovo.style.cursor = 'pointer';
	}
}

function misOut(ovo)
{
//if (!ovo.izabrano)
// {
if (ovo.style.backgroundColor!=''){
	ovo.style.backgroundColor = '';
	ovo.style.color = '';
	}
// }
}

vrati = false; // bez ovoga radi error jer se inicijalizira tek na misOut

function misOver_search(ovo) {
	if (ovo.style.backgroundColor!='white') {
		ovo.style.backgroundColor = 'white';
		ovo.style.color = '#00112F';
		ovo.style.cursor = 'pointer';
		if (vrati) {
			if (vrati!=ovo.id) {
				document.getElementById(vrati).style.backgroundColor = '';
				document.getElementById(vrati).style.color = '';
			}
		}
	}
}
function misOut_search(ovo) {
	if (ovo.style.backgroundColor!=''){
		ovo.style.backgroundColor = '#D5D5D5';
		ovo.style.color = '#00112F';
		vrati = ovo.id;
	}
}


function misKlik(ovo, stupac)
{
//if (!ovo.izabrano) ovo.izabrano=true
//else ovo.izabrano=false
}


function proba(txt) {
	alert(txt);
}


// otvaranje za movie u referencama pod search
function mov_pokreni(str) {
	polje_div_img = new fx.Height('polje_img');
	polje_div_mov = new fx.Height('polje_mov');
	mov_zatvori();
	search_prepare(str,'ajax_reference_mov.php','polje_reference_mov_result');
	setTimeout("mov_otvori()",2000);
}
function mov_zatvori() {
	polje_div_img.toggle();
}
function mov_otvori() {
	//document.getElementById('mov_file').style.height="0px";
	document.getElementById('polje_mov').style.display="block";
	document.getElementById('mov_file').style.height="304px";
	//setTimeout("mov_ani()",1000);
}
function mov_ani() {
	visina = document.getElementById('mov_file').offsetHeight;
	if (visina<304) {
		document.getElementById('mov_file').style.height = visina+10+"px";
		setTimeout(mov_ani,10);
	}
	else document.getElementById('mov_file').style.height = "304px";
}