$(function(){
	
	$('#clientlogin #name').click(function(){
		$(this).attr('value','');
	});
	$('#clientlogin #goclient').click(function(){
		    var name = document.getElementById("name").value
		    var url = "http://www.sfbassociates.com/" + name;
			document.location.href = url;
		return false;
	});
	
});
