var infoElem;
// var timeo, timeo2;
window.onload = function() {
	if ( document.getElementById('infoEle') ) {
	infoElem = new Fx.Slide('infoEle', {duration: 400});
	infoElem.hide();
	// document.getElementById('infoContainer').style.width = '20px';
	// document.getElementById('infoContainer').style.marginLeft = '362px';
	document.getElementById('infoEle').style.visibility = 'visible';

	// window.setTimeout("showinfo();", 400);
	// window.setTimeout("showinfo();", 1100);
	}
}





/* ******************** */

function helpPane (action) {
/*** passes the command thruh with a needed delay so the state doesnt get messed up ***/
	infoElem.toggle();
}

// function displayInfo () {
// /*** descritption ***/
// 	var infoCont = document.getElementById('infoContainer');
// 	infoElem.toggle();
// 	// infoCont.style.width = '382px';
// 	// infoCont.style.marginLeft = '0px';
// 	
// }
// 
// 
// function hideInfo () {
// /*** descritption ***/
// 	var infoCont = document.getElementById('infoContainer');
// 	infoElem.toggle();
// 	// infoCont.style.width = '20px';
// 	// infoCont.style.marginLeft = '362px';
// 
// 	// timeo2 = window.setTimeout("document.getElementById('infoContainer').style.width = '20px'; document.getElementById('infoContainer').style.marginLeft = '362px';", 401);
// 	
// }


