$(document).ready(function() {
    $('#mini_username').focus(function() {
        $this = $(this);
        if($this.val() == 'Användarnamn') {
            $this.val('');
        }
    }) 
    $('#mini_password_fake').focus(function() {
        $this = $(this);
        $this.hide();
        $('#mini_password').show().get(0).focus();
    }) 
});
