



$(document).ready(function(){
$("#Login").hide();

$("#ClientLogin").toggle(function(){$("#Login").fadeIn();},function(){$("#Login").fadeOut();});

$("#Go").click(function(){

if((document.getElementById('username').value.length==0)||(document.getElementById('canary').value.length==0)){
$("#LoginValidate").html("Please enter your username and password");
}
else{
$("#LoginValidate").html("Username and password not recognised");
}


});

$("#title").hide();

setTimeout("showTitle()",1500);



});


function showTitle(){

$("#title").fadeIn();
}