
function welcome () {
	new Effect.Appear('welcome');
	new Effect.Appear('right');
}

function moreinfo($mfo) {
	new Effect.toggle($mfo, 'slide', { duration: 0.8 });
}

function menu($item) {
	new Effect.Fade('welcome', { duration: 0.8 });
	new Effect.Fade('work', { duration: 0.8 });
	new Effect.Fade('about', { duration: 0.8 });
	new Effect.Fade('contact', { duration: 0.8 });

	new Effect.Morph('workm', {
	  style: 'background:#f8f8f8; color: #a9a8a8; margin-Left:0px;', duration: 0.6 });
  new Effect.Morph('aboutm', {
	  style: 'background:#f8f8f8; color: #a9a8a8; margin-Left:0px;', duration: 0.6 });
  new Effect.Morph('contactm', {
	  style: 'background:#f8f8f8; color: #a9a8a8; margin-Left:0px;', duration: 0.6 });
	new Effect.Appear($item, { delay: 0.9 });
	new Effect.Morph($item + 'm', {
	  style: 'background:#daebf9; color: #343434; margin-Left:50px;', delay: 0.6, duration: 0.6 });
 

}
