function ajaxLink(url, container)
{
	$.ajax({
		type: "GET",
		url: url,
		dataType: "html",
		beforeSend: function(){
			$(container).fadeOut(50);
		},
		success: function(html){
			$(container).html(html);
			$(container).fadeIn();
		}
	});
}

