$(document).ready(function () {

    /**
     * Все ссылки с атрибутом rel = external,
     * открываем в новом окне.
     */
    $("a[rel*='external']").each(function () {
        $(this).bind('click', function () {
            window.open($(this).attr('href'));
            return false;
        })
    });

    $('span.invisible').remove();


    if(jQuery('#vk_like')){
        jQuery('#vk_like').css('position', 'absolute');
    }

    if(jQuery('#vk_comments')){
        jQuery('#vk_comments').css('margin-top', '10px');
    }
});

