/*
 * 2011(c) goplek.com
 * Behavior for techniks site
 **/

$(function(){

    // Login dialog animation
    $('.login').click(function(){
       TechniksSite.showLogIn();
    });

    $('input[name=user]').focus(function(){
        var t = $(this);
        if(!t.data('cleared')){
            t.data('cleared', true);
            t.val('');
        }
    });
});

var TechniksSite = {

    hideLogin: function(){
        $('.login').animate({
            top: -185
        })
        event.stopPropagation();
        return false;
    },

    logOut: function(){
        Moka.command('log-out', {}, function(){
            document.location = "/";
        });
    },

    showLogIn: function(){
        $('.login').animate({
            top: 176
        }, function(){ $('input[name=user]').focus(); })
    }

}
