$(document).ready(function () {
    $('.actions.panel').hide();
    $('#breaking_news, .content, .channel.box').hover(function () {
        $(this).find('.actions.panel').show();
    }, function () {
        $(this).find('.actions.panel').hide();
    });
    
    $("a[rel^='prettyPhoto']").prettyPhoto({
        show_title: false,
        social_tools: false,
        deeplinking: false,
        theme: 'light_square'
    });
});
