function lazyLoadFonts() {
	var fontFace =
		"@font-face {" +
		"  font-family: 'DejaVu Sans t';" +
		"  src: url('http://dl.dropbox.com/u/105776/DejaVu-Sans/DejaVuSans.eot');" +
		"  src: local('DejaVu Sans'), " +
			"url('http://dl.dropbox.com/u/105776/DejaVu-Sans/DejaVuSans.ttf') " +
			"format('truetype');" +
		"}";

	var style = document.createElement('style');
	document.getElementsByTagName('head')[0].appendChild(style);
	
	var styleSheets = document.styleSheets;
	var s = styleSheets[styleSheets.length-1];
	
	if (s.insertRule) {
		// Firefox, Safari, Chrome
		s.insertRule(fontFace, 0);
	}
	else if (typeof s.cssText == 'string') {
		// IE
		s.cssText = fontFace;
	}
}

if (window.addEventListener) {
	// Firefox, Safari, Chrome
	window.addEventListener('load', lazyLoadFonts, false); 
}
else if (window.attachEvent) {
	// IE
	window.attachEvent('onload', lazyLoadFonts);
}
