jQuery('document').ready(function() {

    $('.imglink').hover(function() {
        $(this).siblings('a').css('text-decoration', 'underline');
    },
    function() {
        $(this).siblings('a').attr('style', '');
    });

})

$(window).load(function() {
    pictures = $('.mod_picture');
    img_w = 0;

    pictures.each(function(i, e) {
        img_w += $(e).find('img').width();
    });

    total_w = $('.pictures').innerWidth();

    img_w /= pictures.size();

    pictures.css('padding-left', Math.floor((total_w - img_w * 3)/6) - 12 + 'px');
    $('.mod_picture:first').css('padding-left', Math.floor((total_w - img_w * 3)/3) - 12 + 'px');
    $('.clear + .mod_picture').css('padding-left', Math.floor((total_w - img_w * 3)/3) - 12 + 'px');
})
