function morphContentContainer () {
	var el = $('contentcontainer');	
	var morph = new Fx.Morph(el);

	morph.start({
		width: '500px',
		height: '320px'
	});
			
}

function tweenContent () {
	var el = $('content');		
	el.fade(1);
}

setTimeout('morphContentContainer()', 1500);
setTimeout('tweenContent()', 2500);
