﻿function swapTab(id) {
    if (id == 'vsnews') { document.getElementById('vscontact').className = 'inactiveTab'; document.getElementById('vsabout').className = 'inactiveTab'; document.getElementById('vscontentnews').className = 'activeContent'; document.getElementById('vscontentabout').className = 'inactiveContent'; document.getElementById('vscontentcontact').className = 'inactiveContent'; }
    if (id == 'vsabout') { document.getElementById('vsnews').className = 'inactiveTab'; document.getElementById('vscontact').className = 'inactiveTab'; document.getElementById('vscontentnews').className = 'inactiveContent'; document.getElementById('vscontentabout').className = 'activeContent'; document.getElementById('vscontentcontact').className = 'inactiveContent'; }
    if (id == 'vscontact') { document.getElementById('vsnews').className = 'inactiveTab'; document.getElementById('vsabout').className = 'inactiveTab'; document.getElementById('vscontentnews').className = 'inactiveContent'; document.getElementById('vscontentabout').className = 'inactiveContent'; document.getElementById('vscontentcontact').className = 'activeContent'; $('.txtName').focus(); }
    document.getElementById(id).className = 'activeTab';
}


function changeLang(lang) {
    $.cookie('lang', lang, { expires: 100 });
    if (lang == 'sv-SE') {
        document.cookie = 'vs=lang=0; expires=Fri, 3 Aug 2020 00:00:00 UTC; path=/; domain=.viewserve.com';
    }
    if (lang == 'en-US') {
        document.cookie = 'vs=lang=1; expires=Fri, 3 Aug 2020 00:00:00 UTC; path=/; domain=.viewserve.com';
    }
    if (lang == 'de-DE') {
        document.cookie = 'vs=lang=2; expires=Fri, 3 Aug 2020 00:00:00 UTC; path=/; domain=.viewserve.com';
    }
    if (lang == 'fr-FR') {
        document.cookie = 'vs=lang=3; 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;
}

function getFlashVersion() {
    try {
        try {
            var axo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6'); try { axo.AllowScriptAccess = 'always'; }
            catch (e) { return '6,0,0'; } 
        } catch (e) { }
        return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g, ',').match(/^,?(.+),?$/)[1];
    } catch (e) { try { if (navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) { return (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g, ",").match(/^,?(.+),?$/)[1]; } } catch (e) { } }
    return '0,0,0';
}

$(document).ready(function() {

    $('#newslettersignup').click(function() {
        $('#mce-responses').hide();
        $('#mce-form').show();
        $('#mc_embed_signup').fadeIn();
    });
    
    $('#vsabout, #vscontact').click(function() {
        $('#mc_embed_signup').hide();
    });
    
    $('#cancel, #mce-close').click(function() {
        $('#mc_embed_signup').fadeOut();
    });

    if (window.location.search == "?tab=contact")
        setTimeout("swapTab('vscontact')", 100);

    $(".nestedList").hover(function(){
        $(this).find('ul').show();
    },function(){
        $(this).find('ul').hide();
    });
    
    if ($.cookie('lang') == 'fr-FR' || $.cookie('lang') == 'de-DE') {
        $('#newslettersignup, .coralba, .quick-guide').hide();
    }
    
    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" });
        });
        $('#frontpageimg').attr({ src: "img/_VS-Anywhere-fr.png" });
    }
    
    if ($.cookie('lang') == 'sv-SE') {
        $('#frontpageimg').attr({ src: "img/_VS-Anywhere-se.png" });
        $('#profitspinner').attr({ src: "img/anywhere-spinner-se.png" });
    }
    
    if ($.cookie('lang') !== 'sv-SE') {
        $('#education').hide();
    }
    
    if ($.cookie('lang') == 'de-DE') {
    }
    
    if ($.cookie('lang') !== 'en-US') {
        $('.smartnet').hide();
    }
    
    $('.vsarea > div.right').find('a:lt(4)').addClass("vsbase");
    
    $('.brochure').hover(function() {
        $(this).addClass("selectedLink");
        $('.brochure.selectedLink img').fadeIn();
        $('.brochure.selectedLink img').css({ "left": (($(this).width() / 2) - ($('.brochure.selectedLink img').width() / 2)) + "px" }); }, function() {
            $('.brochure img').fadeOut();
            $(this).removeClass("selectedLink");
        });
    
    $(".vsareatabs").tabs();
    
    $("a[rel^='prettyPhoto']").prettyPhoto();
    
});