$(document).ready(function()
{
	$("a#search_properties").live("click", function () {
		var id = $(this).attr("id");

		$("#content-search").html("<div class=\"miniajax\"><img src=\"img/ajax/ajax-loading.gif\" /></div>").fadeIn("slow");

		$("#content-search").load(
			$(this).attr('href'), function () {
				$(this).fadeIn(300);
			}
		);

		return false;
	});

	if (!msie)
	{
		$('input[type=submit]').corner('round');
	}
});
