// JavaScript Document

function showZanimanja(l_container,c_container,filter,zanimanje_id){
	var httpObj=getHTTPObject();
	var response="";
	if(httpObj != null){
        httpObj.open("GET", host+"/inc/zanimanja/ajax_zanimanja.php?filter="+filter+"&id="+zanimanje_id, false);
        httpObj.send(null);
		while(httpObj.readyState!=4){
			document.getElementById(container).innerHTML="<img src='/img/in-progress.gif' border='0' height='30'/>";
		}
      	if (httpObj.readyState==4){
       		response=httpObj.responseText;
      	}
		document.getElementById(c_container).innerHTML=response;
		document.getElementById(l_container).innerHTML="";

	}
	$(".trigger").tipsy({gravity: 'sw'});
	$(".openpopup").click(function(e){$(this).showTooltip(e)});
}
