$(function(){
	//$(".property_type").dropdownchecklist({ firstItemChecksAll: true, width: 150 });
	// To work with the autocomplete
    $('.search_suggest').click(function () {
        $('.search_suggest').val('');
    });

    $('.search_suggest').blur(function () {
			 if(this.value == ""){
				this.value = "City or Neighborhood or Address or ZipCode or MLS #";
				
			 }
    });
});

