// JavaScript Document

// inicijalno je selektovan stan
var prethodno_dugme = 0;

function nek_select(id) {
	rb = document.getElementsByName("nek");
	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 != id) {	
		if (prethodno_dugme == -1) {		
			prethodno_dugme = id;
			document.getElementById('btn'+id).className = 'nekretnina_btn_selected';
			} else {
			document.getElementById('btn'+id).className = 'nekretnina_btn_selected';
			document.getElementById('btn'+prethodno_dugme).className = 'nekretnina_btn';	
			prethodno_dugme = id;
			};
		};
	}