	/* Copyright Grovelawn 2007 */
function image_switch(e)
{
	if( !e ) var e = window.event;
	if( 'mouseover'==e.type )	{ this.src = this.src_hover; } else
	if( 'mouseout'==e.type )	{ this.src = this.src_normal; }
	return true;
}
function image_switch_setup(id)
{
	if( document.getElementById )
	{
		var i = document.getElementById(id);
		if( i )
		{
			(new Image()).src = i.src_hover = ((i.src_normal = i.src)+'').replace('.jpg','-hover.jpg');
			i.onmouseover = i.onmouseout = image_switch;
			i.onclick = function() { window.location.href = '/scripts/conveyancing.php'; };
		}
	}
}
window.onload = function()
{
	image_switch_setup('caif');
}
