function setStart( dv )
{
	// [holdDiv]
	// name of surrounding block element
	// where font-resizing will occur
	var holdDiv;
	
	// [tag]
	// array of elements for substitution
	var tag = new Array("h1", "p", "a", "h3", "h2", "td", "label", "input", "textarea", "h4", "li");
	
	// [tagSize]
	// array of font sizes for elements
	var tagSize = new Array(20, 12, 12, 12, 16, 12, 12, 12, 12, 20, 12);
	
	// [steps]
	// number of max steps to increase
	var steps = 5;
	
	// steps from default
	// or cookie
	var hoops = 0;

	if ( getCookie("LK50fontSize") != null ) {
		hoops = parseInt( getCookie("LK50fontSize") );
	}

	this.holdDiv = dv;
	this.tag = tag;
	this.tagSize = tagSize;
	this.steps = steps;
	this.hoops = hoops;

	if ( hoops > 0 ) setFontSizeCookie( );
}

