﻿$(function () {
    $('nav .social-messages .twitter').show();
    $('nav .social-icons img').hover(
        function () {
            var c = $(this).attr('class');
            $('nav .social-messages > *').hide();
            $('nav .social-messages .' + c).show();
        });

    var tc = ix2.twitterClient({
        template: '#tweetTemplate',
        element: '.tweets',
        childClass: '.tweet',
        rpp: 1
    });

    tc.getStream("from:robbihun");

    $('.date .relative').timeago();

    $("span.me img").hover(function() { $(this).addClass("me-hover"); }, function() { $(this).removeClass("me-hover"); });
});
