$(document).ready(function(){

    $(".timeago").timeago();
    
    $(".button").hover(
        function () {
            $(this).addClass("button_hover");
        },
        function () {
            $(this).removeClass("button_hover");
        }
    );

    $( "input, textarea" ).placehold( "something-temporary" );

    $(".zebra tr:nth-child(odd)").addClass("odd");

    if (typeof init=='function')
    {
        init();
    }

    $('a').click(function() 
    {
        this.blur();
    });    
});

