// JavaScript Document


function closePanelHome(where){
	new Effect.Move('main', { x: 0, y: 455, mode: 'relative', transition:Effect.Transitions.EaseFromTo, duration: 0.6, beforeStart:function(){document.getElementById('movie').style.visibility='hidden'; new Effect.Fade('logo', {from:1, to:0.5, duration:0.3});}  });
//	new Effect.Fade('main', { duration: 0.5 });
	setTimeout(function(){location.href=where},550);
}

function closePanel(where){
	new Effect.Move('main', { x: 0, y: 455, mode: 'relative', transition:Effect.Transitions.EaseFromTo, duration: 0.6, beforeStart:function(){new Effect.Fade('logo', {from:1, to:0.5, duration:0.3});}  });
//	new Effect.Fade('main', { duration: 0.5 });
	setTimeout(function(){location.href=where},550);
}