jQuery.fn.preload = function () {//preloading images
    jQuery('img', this).each(function() {
        var img = new Image();
        img.src = this.src; 
    });
}

jQuery(function($){
    
    $("[rel='video']").prettyPhoto({//video popup
        theme: 'dark_square',
        social_tools: null
    });
    
    $(".tweets").tweet({//twitter feed
        join_text: "auto",
        username: "TheArmorySocial",//twitter account name
        template: '{text}&nbsp; <span style="font-size:10px">{time}</span>',
        count: 2,
        loading_text: "loading tweets..."
    });
});

