﻿$(document).ready(function () {
    if (window.location.href.indexOf('VOZREZO/Image') != -1 || window.location.href.indexOf('VOZREZO/VozInfoVR') != -1 || window.location.href.indexOf('VOZREZO/Portrait') != -1) {
        $('#sharefb').attr('href', 'http://www.facebook.com/share.php?u=' + window.location.href);
        $('#sharetw').attr('href', 'http://www.twitter.com/home?status=' + window.location.href);
    }

    if (window.location.href.indexOf('EspacePerso') != -1) {

        $('#lnkAuteur').attr('href', $('.portrait').attr('href'));

        if (getCook('pf') == '' && $('.portrait') != null) {
            setCookie('pf', $('.portrait').attr('href'), 1);
        }
        else {
            if ($('.portrait').attr('href') != undefined && $('.portrait').attr('href') != getCook('pf')) {
                setCookie('pf', $('.portrait').attr('href'), 1);
            }

            $('#lnkAuteur').attr('href', getCook('pf'));
        }
        $('#lnkAuteur').attr('title', $('.auteur').html());
    }
});
