function setup(){
	Element.hide('slog1a');
	Element.hide('slog2a');
	Element.hide('slog1b');
	Element.hide('slog2b');
	Element.hide('slog1c');
	Element.hide('slog2c');
	
	slogan1(true);
	setTimeout("slogan2(true)", 5000);

}



function slogan1(show){
	if (show){
		Effect.Appear('slog1a', { duration: 2.0 });
		Effect.Appear('slog1b', { duration: 2.0 });
		Effect.Appear('slog1c', { duration: 2.0 });
	} else {
		Effect.Fade('slog1a', { duration: 2.0 });
		Effect.Fade('slog1b', { duration: 2.0 });
		Effect.Fade('slog1c', { duration: 2.0 });
	}
	var str = "slogan1("+eval(!show)+")";
	setTimeout(str, 5000);
}

function slogan2(show){
	if (show){
		Effect.Appear('slog2a', { duration: 2.0 });
		Effect.Appear('slog2b', { duration: 2.0 });
		Effect.Appear('slog2c', { duration: 2.0 });
	} else {
		Effect.Fade('slog2a', { duration: 2.0 });
		Effect.Fade('slog2b', { duration: 2.0 });
		Effect.Fade('slog2c', { duration: 2.0 });
	}
	var str = "slogan2("+eval(!show)+")";
	setTimeout(str, 5000);
}