/* Author:

*/

$(document).ready(function() {
        $("nav ul li[title]").tooltip();
        $("abbr.timeago").timeago();

        /*$.getJSON('/json/posts.json', function(data){
                var items = [];
                $.each(data, function(item) {
                        var d=data[item];
                        items.push('<a href="'+ d.url + '">' +  d.title + '</a> (' +  d.tags+')');
                    });

                $('body').append(items.join(' <br> '))

        }); */
});

