$(document).ready(function() {
	//clear form fields
	$("#searchTerm").focus(function(srcc) {
		if ($(this).val() == $(this)[0].title)  {
			$(this).val("");
			}
    	});
    $("#searchTerm").blur(function() {
		if ($(this).val() == "")  {
			$(this).val($(this)[0].title);
			}
   		});
    $("#searchTerm").blur(); 
	
	$('.printMe').click(function() { window.print(); return false; });
	
	$("#companyNameItem").hide();
	$("#locationType").change(function() {
		changeLocationType($(this).val());
		});
});
