var $$=function(objId)
{
	return document.getElementById(objId);
}

function LoadAjaxDiv(divId, path, text, callbackFunc)
{
	$('#'+divId).html('<p> '+text+' <img src="images/loading.gif" width="16" height="16" /></p>');
	$('#'+divId).load(path, null, callbackFunc);
}

$(function(){
	$("#fav").corner("bottom");
    });