// Facebook Share Link
$(document).ready(function () {
    $('.fb.share').each(function () {
        var url = 'http://www.facebook.com/sharer.php?';
        $(this).bind('click', function () {
            var u = location.href, t = document.title;
            window.open(url+'u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
            return false;
        });
        $(this).attr('href', url+'u=http://www.myteachermyhero.com').attr('target', '_blank');
    });
    
    $('.reddit.share').each(function () {
        $(this).bind('click', function () {
            var u = location.href,
                url = $(this).attr('href');
            window.open(url+'?url='+encodeURIComponent(u));
        })
    });
    
    $('.digg.share').each(function () {
        $(this).bind('click', function () {
            var u = location.href,
                t = document.title,
                url = 'http://digg.com/submit';
            window.open(url+'?url='+encodeURIComponent(u)+'&title='+t+'&media=video');
        })
    })
});
