var tabSelected = false;

homesearchHighlight = function(act, id) {
	if(!tabSelected) {
		for(var i=1;i<=3;i++) {
			document.getElementById("divSearchPrice"+i).style.color = "#666666";
		}
		if(act == 1) {
			document.getElementById("divSearchPrice"+id).style.color = "#E48511";
		}
	}
}

homesearchSelect = function(trigger, id) {
	if(trigger == 'tab' || (trigger == 'box' && !tabSelected)) {
		for(var i=1;i<=3;i++) {
			document.getElementById("homesearchTab"+i).style.backgroundImage = "url(img/homesearch/tab_bg_"+i+"_select.png)";
		}
		
		document.getElementById("homesearchTab"+id).style.backgroundImage = "url(img/homesearch/tab_bg_"+id+"_active.png)";
		
		document.getElementById('divSearchOverlayText1').style.display = 'none';
		document.getElementById('divSearchOverlayText2').style.display = 'none';
		document.getElementById('divSearchOverlayText3').style.display = 'none';
		document.getElementById('divSearchOverlayText'+id).style.display = '';
		
		document.getElementById("divSearchOverlay").style.visibility = "visible";
		
		document.getElementById("divSearchPrice1").style.color = "#E48511";
		document.getElementById("divSearchPrice1").style.backgroundColor = "#FFFFFF";
		document.getElementById("divSearchPrice1").innerHTML = "Ab "+currency+"<br /><span class='searchPriceFieldLarge'>"+arrPrices[id]+".-</span>";
		
		document.forms.frmBasicSearchHome.type.value = id;
		
		tabSelected = true;
	}
}