/*TitleEntries.  Simple Object Data holder, to tie 2 divs together, 
 * where one is the button that effects the other, and save the state of that effect in an integer
 * nav=button
 * box=thing that will react
 * state=-1 changing to off, 0 off, 1 on, 2 chaning to on
 */
//Class for holding a fadeinitialiser-to-fadebox relation       
function titleEntry(newBox, newNav,newChangeText) {
	this.box = newBox;
	this.nav = newNav;
	this.changeText = newChangeText;
	this.state=0;
}
 

