(function($){
    $(document).ready(function() {
        $('.module .body img').lazyload({effect: 'fadeIn'});

        // Search
        var input = $('#search').find('.text');
        var text = $('#search').find('.text').val();
        input.focus(function() {
            if ($(this).val() == text) {
                $(this).val('').removeClass('off');
            }
        }).blur(function() {
            if ($(this).val() == '') {
                $(this).val(text).addClass('off');
            }
        });

        $('#tweets-go-here .time').timesince();
    });
})(jQuery);
