	window.onload=function(){
	      	      bfont('._h1 h1','._h1+h1');
	      	      bfont('._h2 h2','._h2+h2');
	      	      bfont('._medium-quote p','._medium-quote+p');
	      	}

function bfont(key, ekey){
      elements = $(key);
      for(j=0;j<elements.length;j++){
          var element = elements[j];
          var text    = element.innerHTML;

          element.innerHTML = '';
          element.style.backgroundImage  = 'url(/common/bfont/bfont.php?text='+ encodeURIComponent(text) +'&key=' + ekey + ')';
          element.style.backgroundRepeat = 'no-repeat'

          var spanObj = document.createElement("span");
          spanObj.style.visibility = "hidden";
          spanObj.innerHTML = text;
          element.appendChild(spanObj);
      }
}
