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

		//$("#content-search").fadeOut(300);
		$("#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); // callback, after the ajax gets loaded, the #content-search div gets faded in at 300 miliseconds
			}
		);

		return false; // to prevent actually making the link go anywhere
	});

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