function swapImages()
{
	if($('onetofade').alt == 'development')
	{
		$('onetofade').src = '/img/consultancy.png';
		$('onetofade').alt = 'consultancy';
	}
	else if($('onetofade').alt == 'consultancy')
	{
		$('onetofade').src = '/img/design.png';
		$('onetofade').alt = 'design';
	}
	else 
	{
		$('onetofade').src = '/img/development.png';
		$('onetofade').alt = 'development';
	}
}

function fadeInThenOut()
{
	new Effect.Opacity('onetofade', {duration:2, from:1.0, to:1.0});
	new Effect.Opacity('onetofade', {duration:2, from:1.0, to:0, queue:'end', afterFinish:swapImages});
	new Effect.Opacity('onetofade', {duration:2, from:0, to:1.0, queue:'end', afterFinish:fadeInThenOut});
}

function fadeTitleInit()
{
	$('kitetitlefade').replace('<a href="/" title="home"><img src="/img/kite.png" width="83" height="50" alt="kite" /><img id="onetofade" src="/img/development.png" width="252" height="50" alt="development" /></a>');
	fadeInThenOut();
}