// Login and password clear
$(function() { 
	$("#username, #password").click(
	  function(){
	      $(this).attr( "value", "" )
	  }
        );

	$("#username").focusout(
	  function(){
	      $val = $(this).attr( "value" );
	      if( $val == '' ) {
		  $(this).attr( "value", "username" );
	      }
	  }
        );

	$("#password").focusout(
	  function(){
	      $val = $(this).attr( "value" );
	      if( $val == '' ) {
		  $(this).attr( "value", "password" );
	      }
	  }
        );

});

