function showBoja(broj) {
	
	for(i=1; i<=2; i++){		
		if(i==broj){
			var div_tag2="boja" + broj;
			document.getElementById(div_tag2).style.display = 'block';
			document.getElementById('change_link'+i).className = 'podrucje_selected';
		}else{
			var div_tag="boja" + i;
			document.getElementById(div_tag).style.display = 'none';
			document.getElementById('change_link'+i).className = 'test';
		}
	}
	

}
