//var mySlide = new Fx.Slide('callFormDiv');
// 
//$('callFormLink').addEvent('click', function(e){
//	e = new Event(e);
//	mySlide.toggle();
//	e.stop();
//});




function offTimer() {
	if (document.timer) {
		window.clearTimeout(document.timer);
		document.timer = null;
	}
}

function show(obj) {
	document.getElementById(obj).style.display = 'block';
}

function hide() {
	if (document.vis_l3) {
			document.getElementById(document.vis_l3).style.display = 'none';
			document.vis_l3 = null;
		};
	document.getElementById(document.vis).style.display = 'none';
	
}
function on(obj) {
	offTimer();
	if (document.vis) {
		hide();
	}
	show(obj);
}

function off(obj) {
	document.vis = obj;
	document.timer = window.setTimeout('hide()', 300);
}

function showInfo(obj) {
	document.getElementById(obj).style.display = 'block';
}

function hideInfo(obj) {
	document.getElementById(obj).style.display = 'none';
}