var myFx = null;
window.addEvent('domready', function(){
	$('login').setStyle('display', 'block');
	myFx = new Fx.Slide('login');
	myFx.hide();
});

function clientLogin(){
	myFx.toggle();
}

function clientLoginHide(){
	myFx.slideOut();
}

function clientLoginTest(){
	if(document.internet.world.value != ""){
		window.location =  "http://www.maddoxassociates.co.uk/clients/"+document.internet.world.value.toLowerCase();
		document.internet.world.value = "";
	}
}
