// The Family Center website, core JS engine
// (c) Daniel Valencia 2008

///////////////////////////////////////////////////////////////////////////
// GLOBAL
///////////////////////////////////////////////////////////////////////////

	var firstLoad = true;

///////////////////////////////////////////////////////////////////////////
// FUNCTIONS
///////////////////////////////////////////////////////////////////////////

function displayInfo(event, str, width, color, backgroundColor, borderColor, offsetX, offsetY) {		
	var offsetX = (offsetX == null) ? 15 : offsetX;
	var offsetY = (offsetY == null) ? 10 : offsetY;	
	var width = (width == null) ? 110 : width;
	var color = (color == null) ? '#000000' : color;
	var backgroundColor = (backgroundColor == null) ? '#f3d3a3' : backgroundColor;	
	var borderColor = (borderColor == null) ? '#ffffff' : borderColor;		
	document.getElementById('float').style.width = width + 'px';
	document.getElementById('float').style.color = color;
	document.getElementById('float').style.backgroundColor = backgroundColor;	
	document.getElementById('float').style.borderColor = borderColor;		
	document.getElementById('float').style.visibility = 'visible';
	var x = event.clientX + offsetX;
	var y = event.clientY + offsetY;	
	document.getElementById('float').style.left = x + 'px';
	document.getElementById('float').style.top = y + 'px';
	document.getElementById('float_text').innerHTML = str;
}

function hideInfo(event) {		
	document.getElementById('float').style.visibility = 'hidden';
}

function updateTime() {
	document.getElementById('time').innerHTML = new Date().toLocaleString().substring(new Date().toLocaleString().indexOf(' '), 99);
	setTimeout(updateTime, 1000);
}