function loadEffects() {
	new Effect.Appear("title_globe", {
		duration: 1.0,
		from: 0.0,
		to: 1.0
	});
	var posArr = new Position.positionedOffset($("container"));
	var posLeft = parseInt(posArr[0]) + 20;
	$("title_image").style.left = posLeft+"px";
	new Effect.Appear("title_image", {
		delay: 0.5,
		duration: 1.0,
		from: 0.0,
		to: 1.0
	});	
	new Effect.Move("title_image", { 
		x: 150, 
		y: 0,
		delay: 1.3,
		duration: 1.0
	});
	new Effect.Appear("title_slogan", {
		delay: 1.8,
		duration: 1.0,
		from: 0.0,
		to: 1.0
	});
}