// JavaScript Document

// inicijalno je selektovan stan
var prethodno_dugme_tip = 0;

function ogltip_select(id) {
	rb = document.getElementsByName("ogltip");
	cnt = rb.length;
	//alert(cnt+'  '+id);
	//alert(rb[id].value);
	for (i=0; i<cnt;  i++) {
			if (rb[i].value == id) {
				rb[i].checked = true;				
				};
		};
		
	if (prethodno_dugme_tip == -1) {
		prethodno_dugme_tip = id;
		document.getElementById('oglbtn'+id).className = 'nekretnina_btn_selected';
		} else {
		document.getElementById('oglbtn'+id).className = 'nekretnina_btn_selected';
		document.getElementById('oglbtn'+prethodno_dugme_tip).className = 'nekretnina_btn';	
		prethodno_dugme_tip = id;
		};
	}