﻿function LoadPictures() {
    MM_preloadImages('images/menu-1-over.gif', 'images/menu-2-over.gif', 'images/menu-3-over.gif', 'images/menu-4-over.gif', 'images/menu-5-over.gif', 'images/menu-6-over.gif');
}

function changePic(Val) {
    var allIds = document.getElementById('NewsFlowIds_1135').value.split(",");
    var count;
    if (document.getElementById('Tr_' + Val).style.display != 'block') {
        for (count = 0; count < allIds.length; count++) {
            $("#Tr_" + allIds[count]).hide();
            document.getElementById('Table_' + allIds[count]).className = 'table-news-out';
        }
        $("#Tr_" + Val).show(0);
        document.getElementById('Table_' + Val).className = 'table-news-over';
    }
}

function FirstNews() {
    var allIds = document.getElementById('NewsFlowIds_1135').value.split(",");
    changePic(allIds[0])
}

function ChangeLanguage() {
    window.location.href = '../web_18515_'+document.Form1.SelectLanguage.value+'/index.aspx';
}
