/************************************************************
/*  JAVASCRIPT NEEDED FOR HOMEPAGE APARTMENT SEARCH WIDGET  *
/************************************************************/

// fill apartment search form with current location
function preFillLocation() {
	// for apartments search
	if (document.getElementById("qs")) {
		document.getElementById("qs").city.value = getCityFromCookie();
		document.getElementById("qs").zip.value = getZipFromCookie();
	}
	
	
	// for job search
	if (document.getElementById("cb")) {
		document.getElementById("cb").Location.value = getCityFromCookie();
	}
	
	// for movies, restaurant, events search
	var arrLocationBoxes = document.getElementsByName("swhere");
	if (arrLocationBoxes) {
		for (i=0; i<arrLocationBoxes.length; i++) {
			arrLocationBoxes[i].value = getCityFromCookie() + ", NC";
		}
	}
}

// page load function call
YAHOO.util.Event.onDOMReady(preFillLocation);