    $(document).ready(function() {
      $(window).scrollTop(scroll);
      $("form").submit(function () {
          $("form").append('<input type="hidden" id="scroll" name="scroll" value="'+$(window).scrollTop()+'"/>');
      }); 
      $("a.scroll").click(function () {
        $(this).attr("href",$(this).attr("href")+"&scroll="+$(window).scrollTop());
      });
      $("a.new").click(function () {
        window.open($(this).attr("href"));return false;
      });      
      $("input#i_username").focus(function () {
        if($(this).attr('value')=='Username') $(this).attr('value','');
        if($("input#i_password").attr('value')=='Password') $("input#i_password").attr('value','');
      });
      $("input#i_password").focus(function () {
        if($(this).attr('value')=='Password') $(this).attr('value','');
        if($("input#i_username").attr('value')=='Username') $("input#i_username").attr('value','');
      });
      
      
    });

