// Font Replacement Sample

function msieversion()
{
  var ua = window.navigator.userAgent
  var msie = ua.indexOf ( "MSIE " )

  if ( msie > 0 )      // If Internet Explorer, return version number
	 return parseInt (ua.substring (msie+5, ua.indexOf (".", msie )))
  else                 // If another browser, return 0
	 return 0
}

if (msieversion()){
	Cufon.set("fontFamily", "League Gothic").replace(".customFont");
	Cufon.set("fontFamily", "League Gothic").replace("h1");
	Cufon.set("fontFamily", "League Gothic").replace("h2");
	Cufon.set("fontFamily", "League Gothic").replace("h3");
	Cufon.set("fontFamily", "League Gothic").replace("#header p");
	Cufon.set("fontFamily", "League Gothic").replace("a");
	Cufon.set("fontFamily", "League Gothic").replace("li");
	Cufon.set("fontFamily", "League Gothic").replace("td");
	Cufon.set("fontFamily", "League Gothic").replace("span");
}
