<!--
var active = 0;
var width = 0;

function toggle_visible() {
	if(active == 0) {
		active = 1;
		divPlusOne();				
	} else if(active == 1){
		active = 0;	
		divMinusOne();
	}
}
		
function divPlusOne() {
	if(width <= 246) {
		document.getElementById('main').style.visibility="visible";	
		width = width + 4;
		document.getElementById('main').style.width=width + 'px';

		BGPos = width + 252
		document.getElementById('PageBG').style.backgroundPosition=BGPos + 'px';
		window.setTimeout('divPlusOne()', 1);
	}
}
		
function divMinusOne() {
	if(width >= 1) {
		width = width - 5;
		document.getElementById('main').style.width=width + 'px';
		window.setTimeout('divMinusOne()', 1);
	} else {
		document.getElementById('main').style.visibility="hidden";
	}
}
-->
