function loadWithFallback(elem, url, fburl){
	/* try loading url into elem; if it fails, load fburl*/
	function callback(response, status, xhr){
		if (status == "error"){
			elem.load(fburl)
		}
	}

	elem.load(url, callback);
}

