$(function () {
		var $searchLinks = $("a[id^='link-to-']")

		$searchLinks.click(function() {
			$searchLinks.removeAttr('class')
			$(this).attr('class', 'selected')
			var theInput = document.getElementById('search-keywords-field')
			theInput.focus()
			theInput.select()

			checkSearchLink()

			return false
		})
	})

function checkSearchLink() {
	searchLocation = searchLocation = $('#icons-menu a.selected').attr('id').substr(8)
	if (searchLocation == 'local' || searchLocation == 'job') {
		$('#search-keywords-field').removeAttr('class')
		$('#search-zip-box').show()

	} else {
		$('#search-keywords-field').attr('class', 'nolocal')
		$('#search-zip-box').hide()
	}
}

