

function start()
	{
		
		if(!$('content')) return false;
		$('content').setOpacity(0);
		new Effect.Opacity('content', {from: 0.0,to: 1.0,duration: 2.0});
		
	}
	

	
document.observe("dom:loaded", function() { start();});
