﻿$(document).ready(function() {

    $('.flags').click(function() {
        $.cookie('lang', this.id, {
            expires: 100
        });
        document.cookie = 'vs=lang=' + $(this).index() + '; expires=Fri, 3 Aug 2020 00:00:00 UTC; path=/; domain=.viewserve.com';

        if (window.location.pathname == "/news.aspx") {
            var newsUrl = new String(window.location.protocol + "//" + window.location.host + window.location.pathname);
            window.location.replace(newsUrl);
        }
        else {
            window.location.reload();
        }
        return false;
    });

    if ($.cookie('lang') == 'fr-FR') {
        $('#login_link').attr({
            src: "img/entrez.png"
        }).hover(function() {
            $(this).attr({
                src: "img/entrez_hover.png"
            });
        }, function() {
            $(this).attr({
                src: "img/entrez.png"
            });
        });
    }

});

