// DOTI.com JavaScript

document.write('<script type="text/javascript" src="src/prototype.js"></script>');

function DropCap(id) {
	
	var Textual = document.getElementById(id).innerHTML;
	
	var Drop = Textual.charAt(0);
	
	//var ab = /^[A-Za-z]$/;
	
	if (Drop) {
		
		document.getElementById('DropIMG').src = 'images/DropCap/' + Drop + '.gif';
		
	}
	else {
        
		document.getElementById('DropIMG').src = '';
		
      }
	  
	Textual.replace(Drop, ' ');
	
}

function ChangeDiv(id, id2, id3, id4) {
	
	wrap = document.getElementsByClassName(id);
	
	for(i=0; i<wrap.length; i++) {
		
		wrap[i].style.display = 'none';
		
	}
	
	document.getElementById(id2).style.display = 'block';
	
	if (id2 == 'Over') {
		FlashHeight();
	}
	
	else {
		document.getElementById('BotArea').style.top = '805px';
	}

	document.getElementById(id3).className = 'LeftNavBON';
	document.getElementById(id4).className = 'LeftNavB';
	
}

function FlashHeight() {
	
	var fHeight = document.getElementById('Main').offsetHeight;
	
	if (document.getElementById('BGFlash')) {	
		document.getElementById('BGFlash').style.height = fHeight + 110 + 'px';
	}
	
	document.getElementById('BotArea').style.top = fHeight + 110 + 'px';
	
}