function manageHomeHeader(href)
{
	//recupere position du header
	aPositionBand = $('band').getPosition();	
			
	//calcule de combien on doit faire grandir page content
	iHeight = aPositionBand.y - 120;
	
	var oFx = new Fx.Tween(
		$('canvas'),
		{
			wait : false, 
			transition : Fx.Transitions.Sine.easeOut,
			duration : 500,
			onComplete: function(){
				window.location = href;
			}
		}
	);
	oFx.start(
		'height',
		iHeight
	);
}