/**
 * Created by IntelliJ IDEA.
 * User: akuzmuk
 * Date: Feb 2, 2011
 * Time: 6:33:34 PM
 * To change this template use File | Settings | File Templates.
 */

function init() {
    var username_name = 'username';
    if ($('#edit-name').attr('value') == '') {
      $('#edit-name').attr('value', username_name);
    }
    $('#edit-name').focus(function() {
      if ($(this).attr('value') == username_name) {
        $(this).attr('value', '');
      }
    });
    $('#edit-name').blur(function() {
      if ($(this).attr('value') == '') {
        $(this).attr('value', username_name);
      }
    });


      var username_pass = '******';
    if ($('#edit-pass').attr('value') == '') {
      $('#edit-pass').attr('value', username_pass);
    }
    $('#edit-pass').focus(function() {
      if ($(this).attr('value') == username_pass) {
        $(this).attr('value', '');
      }
    });
    $('#edit-pass').blur(function() {
      if ($(this).attr('value') == '') {
        $(this).attr('value', username_pass);
      }
    });




}

