jQuery.noConflict();

jQuery(document).ready(function() {
	if (jQuery("#mlsInput") && jQuery("#mlsSubmit")) { 
		jQuery("#mlsSubmit").click(function() { 
			jQuery.ajax({
				type: 'POST',
				url: '/properties/getMls',
				data: {mls: jQuery("#mlsInput").val()},
				success: function(msg) { 
					window.location=msg;
				}, 
				error: function() { 
					jQuery("#mlsInput")
						.css('border-color', 'red')
						.css('color','red')
						.val("Not Found");
				}
			});
		});
	}
});


