// JavaScript Document
var extraTimeoutCont;
function extraTimeout(){
	$('openInfo').style.display ='none';
	$('extraInner').style.display='block';
	$('extraInfo').style.overflow = 'visible';
}
window.onload = function() {
	//TIMEOUT FUNCTION
	
	//MOO FX HEIGHT OBJECT
	var extraInfoHeight = $('extraInfo').effect('height', {duration: 1000, transition: Fx.Transitions.linear});
	//ATTACH EVENTS
	$('closeInfo').addEvent('click', function() {
																window.clearTimeout(extraTimeoutCont);
																$('extraInfo').style.overflow = "hidden";
																$('openInfo').style.display ="block";
																$('extraInner').style.display="none";
																extraInfoHeight.clearTimer();
																extraInfoHeight.set(131);
																extraInfoHeight.custom(131, 0);
															} );
	$('openInfo').addEvent('click', function() {
														  		extraInfoHeight.set(0);
																extraInfoHeight.clearTimer();
																extraInfoHeight.custom(0, 131);
																$('openInfo').style.display ='none';
																extraTimeoutCont = window.setTimeout("$('extraInner').style.display='block';$('extraInfo').style.overflow = 'visible';", 2000);
															} );
	
	

}	//END WINDOW.ONLOAD
