
  	var height=22;
  	var ittem;
  	var expanded="it1";
  	var c_item;
  	function expandTo() {
  		setTimeout("expand()",400)
  	}
  	function expand() {
  		
  		if(height<400){
  			height+=7;
  			document.getElementById("content").style.height=height+"px";
  			setTimeout("expand()",2);
  		}
  		else{
  		  document.getElementById("content").style.visibility="visible";
	    	//document.getElementById("item_content_"+expanded).style.left="0px";
  		  height=22;
  		}
  	}
  	function expand2(item) {
  		if(height==22){
  			document.getElementById("item_content_"+expanded).style.visibility="hidden";
  			//document.getElementById("item_content_"+expanded).style.left="-10000px";

  			document.getElementById(expanded).style.height="22px";
  			expanded=item;
  		}
  		ittem=item;
  		if(height<220){
  			height+=7;
  			document.getElementById(ittem).style.height=height+"px";
  			setTimeout("expand2(ittem)",2);
  		}
  		else {
  		  document.getElementById("item_content_"+item).style.visibility="visible";
  		  //document.getElementById("item_content_"+item).style.left="0px";
  		  height=22;
  		}
  	}
  	function jump(site) {
  		window.location.href=site;
  	}
  	
  	function f1() {
  		expand2('it2');
  		xajax_osvjezi("t_polasci","polazak");
  	}
  	function f2() {
  		expand2('it3');
  		xajax_osvjezi("t_dolasci","dolazak");
  	}

