/* All this script does is to extract the page title from the document
   and output it with a CSS format. This is "fall through" code (no functions)
   
   Copyright 2007 by Charles D. Montgomery d.b.a. HirMon & Associates, Inc
   (HirMon.com)
   
   Pirate this is you must, just leave the copyright line in place to remain legal. */
	var labeltext='Denver Bookbinding Company, Inc.';

	var nlbl='';
	var char='';
	var trigger=0;
	for (var i=0;i<labeltext.length;i++) {
		char=labeltext.substr(i,1);
		if (char.toUpperCase() == char) {
			//leave it alone, but format it to the correct <span tag
			nlbl+='</span><span class=SubHeadCapFooter>' + char + '</span>';
			trigger=0;
		} else {
			char=char.toUpperCase();
			if (trigger == 0) {
				trigger = 1;
				nlbl+='<span class=SubHeadLCFooter>';
			}
			nlbl+=char;
		}
	}
	nlbl+='</span>';
	document.write(nlbl);
/* end of script */

