// JavaScript Document

function login_teaser(){	
		$("#object").animate({ 
			top: "353px"
		  }, 2000 ).fadeOut(800).fadeIn(400).fadeOut(800).fadeIn(400).fadeOut(800).fadeIn(400).fadeOut(800).fadeIn(400).fadeOut(800).fadeIn(400);
	   
	   //close the message box when the cross image is clicked 
	   $("#close_message").click(function()
		{
		   $("#object").fadeOut("slow");
		});			
  }	
  
function validate_form()
{  
    valid = true ;                            
    if ( document.loginform.log.value == "" || document.loginform.pwd.value == ""  )
    {
        valid = false;    
        login_teaser() ;                                
    }                            
    return valid ;
}  


