 /* ================================================== *\
|*    JS Pulldown Builder © 2004-2006 by EEBKiller      *|
|*                                                      *|
|*    Modes for opening and closing:                    *|
|*                                                      *|
|*    0 - No Animation                                  *|
|*    1 - Sliding from left top corner                  *|
|*    2 - Fading                                        *|
|*    3 - Effects 1 & 2 combined                        *|
|*    4 - Sling like Windows startmenu but from top     *|
|*                                                      *|
 \* ================================================== */

var userAgent = navigator.userAgent.toLowerCase();
var is_ie     = (userAgent.indexOf('msie') != -1);
var is_moz    = (navigator.product == 'Gecko');
var is_ns     = (userAgent.indexOf('compatible') == -1) && (userAgent.indexOf('mozilla') != -1);
var pd_activePulldown = false;

var pd_delay = 700;     // Delay, when opened pulldown shall be closed automatically
var pd_duration = 200;  // How long does it take to open each pulldown 
var pd_steps = 20;      // Steps to open and close
var pd_modeShow = 4;    // Mode for opening
var pd_modeHide = 4;    // Mode for closing
var pd_image = 'pd_open.gif';  // Image used for Arrow

                        //  /* ================= *\
var pd_topSafer = 0;    // |*  Internal vars !!!  *|
var pd_closer = false;  //  \* ================= */

function pd_init(elem) {
//  document.write(' <img id="' + elem + '_pic" src="' + pd_image + '" border="0" alt="" />');
    var switch1_elem = document.getElementById(elem);
//    var switch2_elem = document.getElementById(elem + '_pic');

    switch1_elem.style.cursor = 'pointer';
    switch1_elem.onclick = pd_eventSwitch;
    switch1_elem.onmouseover = pd_eventSwitch;

//    switch2_elem.style.cursor = 'pointer';
//    switch2_elem.onclick = pd_eventSwitch;
//    switch2_elem.onmouseover = pd_eventSwitch;
}

function pd_eventSwitch(E) {
    if (is_ie) {
       var E = event;
       var element = E.srcElement;
    } else {
       var element = E.target;
    }
    if (pd_activePulldown && E.type == 'mouseover') {
// Bereits eines offen oder am Öffnen und HOVER auf einen Button/Text
        var this_elem = element.id.replace(/_pic$/, '');
        if (this_elem != pd_activePulldown) {
            window.clearTimeout(pd_closer);
            document.getElementById(pd_activePulldown + '_pdown').style.display = 'none';
            pd_activePulldown = this_elem;
            var target_elem = document.getElementById(pd_activePulldown + '_pdown');
            var switch_elem = document.getElementById(pd_activePulldown);

            var pos = pd_getOffset(switch_elem);
            target_elem.style.filter = 'alpha(opacity=100)'; 
            target_elem.style.MozOpacity = 1;
            target_elem.style.clip = 'rect(auto, auto, auto, auto)';
            target_elem.style.display = 'inline';
            pos['left'] -= 10;
            if (pos['left'] < 0) {
                pos['left'] = 0;
            }
            pos['top'] += switch_elem.offsetHeight + 5;
            target_elem.style.top = pos['top'] + 'px';
            target_elem.style.left = pos['left'] + 'px';
            target_elem.onmouseout = pd_eventClose;
        }
    } else if (pd_activePulldown && E.type == 'click') {
// Bereits eines offen oder am Öffnen und KLICK auf einen Button/Text
        var this_elem = element.id.replace(/_pic$/, '');
        if (this_elem == pd_activePulldown) {
            pd_closer = window.setTimeout('pd_closePulldown(0)', 0);
        }
    } else if (!pd_activePulldown && E.type == 'click') {
// Keines geöffnet, klick auf den Button/Text
        pd_activePulldown = element.id.replace(/_pic$/, '');

        var target_elem = document.getElementById(pd_activePulldown + '_pdown');
        var switch_elem = document.getElementById(pd_activePulldown);

// Unter dem Pfeil-Button zentrieren
        var pos = pd_getOffset(switch_elem);
        target_elem.style.display = 'inline';
        pos['left'] -= 10;
        target_elem.style.display = 'none';
        if (pos['left'] < 0) {
            pos['left'] = 0;
        }
        pos['top'] += switch_elem.offsetHeight + 5;
        target_elem.style.top = pos['top'] + 'px';
        target_elem.style.left = pos['left'] + 'px';

        target_elem.onmouseout = pd_eventClose;
        document.onmouseover = pd_eventStayOpen;
        document.onclick = pd_eventClose;
        window.setTimeout('pd_openPulldown(0)', 0);
    }

}

function pd_eventClose(E) {
    if (pd_activePulldown) {
        if (is_ie) {
           var E = event;
           var element = E.srcElement;
        } else {
           var element = E.target;
        }
        var elemID = element.id.replace(/_pic$/, '').replace(/_pdown$/, '');
        if (E.type == 'click' && elemID != pd_activePulldown) {
            if (!pd_checkChild(element)) {
                pd_closer = window.setTimeout('pd_closePulldown(0)', 0);
            }
        } else if (E.type == 'mouseout') {
            pd_closer = window.setTimeout('pd_closePulldown(0)', pd_delay);
        }
    }
}
  
function pd_eventStayOpen(E) {
    if (pd_activePulldown) {
        if (is_ie) {
            var E = event;
            var element = E.srcElement;
        } else {
            var element = E.target;
        }
        if (pd_checkChild(element)) {
            window.clearTimeout(pd_closer);
        }
    }
}
    
function pd_eventAction(E) {
    if (pd_activePulldown) {
        if (is_ie) {
            var E = event;
            var element = E.srcElement;
        } else {
            var element = E.target;
        }
        var elemId = element.id;
        var elemMenu = elemId.replace(/pdi_([\d\w]+)-\d+/, "$1");
        var elemMenuId = elemId.replace(/pdi_[\d\w]+-(\d+)/, "$1");
        if (E.type == "mouseover") {
            eval('element.className = ' + elemMenu + '[' + elemMenuId + '][2];');
        } else if (E.type == "mouseout") {
            eval('element.className = ' + elemMenu + '[' + elemMenuId + '][1];');
        }
    }
}

function pd_openPulldown(step) {
    var target_elem = document.getElementById(pd_activePulldown + '_pdown');
    switch (pd_modeShow) {
        case 0:
        target_elem.style.display = 'inline';
        break;
        case 1:
        pWidth = target_elem.offsetWidth * (step + 1) / pd_steps;
        pHeight = target_elem.offsetHeight * (step + 1) / pd_steps;
        target_elem.style.clip = 'rect(0px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight) + 'px, 0px)';
        break;
        case 2:
        percent = Math.round((step + 1) / pd_steps * 100);
        target_elem.style.filter = 'alpha(opacity=' + percent + ')'; 
        target_elem.style.MozOpacity = (percent / 100);
        break;
        case 3:
        pWidth = target_elem.offsetWidth * (step + 1) / pd_steps;
        pHeight = target_elem.offsetHeight * (step + 1) / pd_steps;
        percent = Math.round(Math.pow(Math.round((step + 1) / pd_steps * 100), 5) / Math.pow(100, 5) * 100);
        target_elem.style.clip = 'rect(0px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight) + 'px, 0px)';
        target_elem.style.filter = 'alpha(opacity=' + percent + ')'; 
        target_elem.style.MozOpacity = (percent / 100);
        break;
        case 4:
        if (step == 0) {
            var switch_elem = document.getElementById(pd_activePulldown);
            var pos = pd_getOffset(switch_elem);
            pd_topSafer = pos['top'] + switch_elem.offsetHeight + 5;
        }
        pWidth = target_elem.offsetWidth;
        pHeight1 = target_elem.offsetHeight;
        pHeight2 = pHeight1 - pHeight1 * (step + 1) / pd_steps;
        target_elem.style.clip = 'rect(' + Math.round(pHeight2) + 'px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight1) + 'px, 0px)';
        target_elem.style.top = (pd_topSafer - pHeight2) + "px";
        break;
    }
    if (pd_modeShow != 0) {
        if (step == 0) {
        }
        if (step + 1 < pd_steps) {
            target_elem.style.display = 'inline';
            window.setTimeout('pd_openPulldown(' + (step + 1) + ')', Math.round(pd_duration / pd_steps));
        }
    }
}

function pd_closePulldown(step) {
    if (pd_activePulldown) {
        var target_elem = document.getElementById(pd_activePulldown + '_pdown');
        switch (pd_modeHide) {
            case 0:
            target_elem.style.display = 'none';
            pd_activePulldown = false;
            break;
            case 1:
            pWidth = target_elem.offsetWidth * (1 - ((step + 1) / pd_steps));
            pHeight = target_elem.offsetHeight * (1 - ((step + 1) / pd_steps));
            target_elem.style.clip = 'rect(0px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight) + 'px, 0px)';
            window.status = step;
            break;
            case 2:
            percent = 100 - (Math.round((step + 1) / pd_steps * 100));
            target_elem.style.filter = 'alpha(opacity=' + percent + ')'; 
            target_elem.style.MozOpacity = (percent / 100);
            break;
            case 3:
            pWidth = target_elem.offsetWidth * (1 - ((step + 1) / pd_steps));
            pHeight = target_elem.offsetHeight * (1 - ((step + 1) / pd_steps));
            percent = Math.round(Math.pow(100 - Math.round((step + 1) / pd_steps * 100), 0.3) / Math.pow(100, 0.3) * 100);
            target_elem.style.clip = 'rect(0px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight) + 'px, 0px)';
            target_elem.style.filter = 'alpha(opacity=' + percent + ')'; 
            target_elem.style.MozOpacity = (percent / 100);
            break;
            case 4:
            if (step == 0) {
                var switch_elem = document.getElementById(pd_activePulldown);
                var pos = pd_getOffset(switch_elem);
                pd_topSafer = pos['top'] + switch_elem.offsetHeight + 5;
            }
            pWidth = target_elem.offsetWidth;
            pHeight1 = target_elem.offsetHeight;
            pHeight2 = pHeight1 - pHeight1 * (1 - (step + 1) / pd_steps);
            target_elem.style.clip = 'rect(' + Math.round(pHeight2) + 'px, ' + Math.round(pWidth) + 'px, ' + Math.round(pHeight1) + 'px, 0px)';
            target_elem.style.top = (pd_topSafer - pHeight2) + "px";
            break;
        }
        if (pd_modeHide != 0) {
            if (step + 1 < pd_steps) {
                window.setTimeout('pd_closePulldown(' + (step + 1) + ')', Math.round(pd_duration / pd_steps));
            }
        }
        if (step + 1 == pd_steps) {
            target_elem.style.display = 'none';
            target_elem.style.filter = 'alpha(opacity=100)'; 
            target_elem.style.MozOpacity = 1;
            target_elem.style.clip = 'rect(auto, auto, auto, auto)';
            pd_activePulldown = false;
        }
    }
}
  
function pd_getOffset(elem) {
    var oLeft = elem.offsetLeft;
    var oTop = elem.offsetTop;

  //  if (is_moz) {
  //      return { 'left' : oLeft, 'top' : oTop };
  //  }
    while ((elem = elem.offsetParent) != null) {
        oLeft += elem.offsetLeft;
        oTop += elem.offsetTop;
    }
    return { 'left' : oLeft, 'top' : oTop };
}
    
function pd_checkChild(elem) {
    do {
        if (elem.id && elem.id == pd_activePulldown + "_pdown") {
            return true;
        }
    } while ((elem = elem.offsetParent) != null)
    return false;
}

function pd_build(pd_name, pd_class, pd_data) {
    var len = pd_data.length;
    document.writeln('<div id="' + pd_name + '_pdown" style="position: absolute; display: none; z-index: 2;" class="' + pd_class + '">');
    for (i = 0; i < len; i++) {
        document.writeln('<div class="' + pd_data[i][2] + '" ' + pd_data[i][4] + ' onmouseover="this.className = \'' + pd_data[i][3] + '\';" onmouseout="this.className = \'' + pd_data[i][2] + '\';" onclick="window.open(\'' + pd_data[i][1] + '\')">' + pd_data[i][0] + '</div>');

    }
    document.writeln('</div>');
}

/*
function switchIn() {
    pd_modeShow ++;
    if (pd_modeShow > 4) {
        pd_modeShow = 0;
    }
    document.getElementById("in1").innerHTML = pd_modeShow;
}

function switchOut() {
    pd_modeHide ++;
    if (pd_modeHide > 4) {
        pd_modeHide = 0;
    }
    document.getElementById("out1").innerHTML = pd_modeHide;
}
*/

document.write('<style type="text/css">\r\n');
document.write('.pdownd {\r\n');
document.write('   background-color: #161616;\r\n');
document.write('   font-family: verdana, arial, tahoma, sans-serif;\r\n');
document.write('   color: #FFFFFF;\r\n');
document.write('   font-size: 11px;\r\n');
document.write('   padding: 3px;\r\n');
document.write('   cursor: pointer;\r\n');
document.write('}\r\n');
document.write('.pdownh {\r\n');
document.write('   background-color: #242424;\r\n');
document.write('   font-family: verdana, arial, tahoma, sans-serif;\r\n');
document.write('   font-size: 11px;\r\n');
document.write('   padding: 3px;\r\n');
document.write('   cursor: pointer;\r\n');
document.write('   color: #D8692C;\r\n');
document.write('}\r\n');
document.write('.pdownb { \r\n');
document.write('   padding: 1px;\r\n');
document.write('   background: #BFBFBF;\r\n');
document.write('}\r\n');
document.write('.ro {background-image: url(\'http://www.globalgameport.com/netzwerkleiste/ro.gif\'); background-repeat: none; width: 18px; height: 12px;}\r\n');
document.write('.uk {background-image: url(\'http://www.globalgameport.com/netzwerkleiste/uk.gif\'); background-repeat: none; width: 18px; height: 12px;}\r\n');
document.write('</style>\r\n');
document.write('<table style="width: 100%;" cellspacing="0" cellpadding="0">\r\n');
document.write('<tr style="background-color: #000000;">\r\n');
if (typeof(ggp_hide_social) == "undefined") {
	document.write('<td style="height: 1px; font-size: 0px; width: 666px;" colspan="4" align="left"><img src="http://www.globalgameport.com/netzwerkleiste/empty.gif" height="1" width="900" border="0" alt="" /></td>\r\n');
} else {
	document.write('<td style="height: 1px; font-size: 0px; width: 666px;" colspan="3" align="left"><img src="http://www.globalgameport.com/netzwerkleiste/empty.gif" height="1" width="900" border="0" alt="" /></td>\r\n');
}
document.write('</tr>\r\n');
document.write('<tr style="background-image: url(\'http://www.globalgameport.com/netzwerkleiste/nt_bg.gif\');">\r\n');
document.write('<td style="width: 100px; height: 25px;"></td>\r\n');
document.write('<td valign="top"><img src="http://www.globalgameport.com/netzwerkleiste/GGP_Logo.gif" alt="" border="0" /></td>\r\n');
document.write('<td valign="middle">\r\n');
document.write('<img src="http://www.globalgameport.com/netzwerkleiste/nt_pages.gif" alt="" border="0" id="network" />\r\n');
document.write('<img src="http://www.globalgameport.com/netzwerkleiste/nt_international.gif" alt="" border="0" id="international" />\r\n');
document.write('<img src="http://www.globalgameport.com/netzwerkleiste/nt_boards.gif" alt="" border="0" id="boards" />\r\n');
document.write('</td>\r\n');
if (typeof(ggp_hide_social) == "undefined") {
	document.write('<td valign="middle">\r\n');
	document.write('<a href="http://twitter.com/globalgameport" target="_blank"><img src="http://www.globalgameport.com/netzwerkleiste/twitter.png" alt="" border="0" /></a>\r\n');
	document.write('<a href="http://www.youtube.com/user/globalgameport" target="_blank"><img src="http://www.globalgameport.com/netzwerkleiste/youtube.png" alt="" border="0" /></a>\r\n');
	document.write('<a href="http://www.facebook.com/pages/Global-Gameport/288967177848" target="_blank"><img src="http://www.globalgameport.com/netzwerkleiste/facebook.png" alt="" border="0" /></a>\r\n');
	document.write('</td>\r\n');
}
document.write('</tr>\r\n');
document.write('</table>\r\n');

menu1 = Array(
    Array('Adventure-Box', 'http://www.adventure-box.de/', 'pdownd', 'pdownh', ''),
    Array('Aion', 'http://www.aiongame.de', 'pdownd', 'pdownh', ''),
    Array('Alan Wake', 'http://www.alanwake-game.de', 'pdownd', 'pdownh', ''),
    Array('Alien-Game', 'http://www.alien-game.de/', 'pdownd', 'pdownh', ''),
    Array('Alone in the Dark', 'http://www.aloneinthedark.de', 'pdownd', 'pdownh', ''),
    Array('APB', 'http://www.apb-game.de/', 'pdownd', 'pdownh', ''),
    Array('Assassin\'s Creed', 'http://www.assassinscreed.de/', 'pdownd', 'pdownh', ''), 
    Array('Battlefield Heroes', 'http://www.bfheroes.de/', 'pdownd', 'pdownh', ''),
    Array('Battle Forge', 'http://www.battle-forge.de//', 'pdownd', 'pdownh', ''),
    Array('Bioshock', 'http://www.bio-shock.de/', 'pdownd', 'pdownh', ''), 
    Array('Boom Blox', 'http://www.boom-blox.de/', 'pdownd', 'pdownh', ''),
    Array('Borderlands', 'http://www.borderlands-game.de/', 'pdownd', 'pdownh', ''),
    Array('Call of Duty', 'http://www.callofduty-game.de/', 'pdownd', 'pdownh', ''),
    Array('Crysis', 'http://www.crysis-shooter.de/', 'pdownd', 'pdownh', ''), 
    Array('Dark Messiah', 'http://www.darkmessiah-game.de/', 'pdownd', 'pdownh', ''),
    Array('Dawn of Magic', 'http://www.dawn-of-magic.net/', 'pdownd', 'pdownh', ''),
    Array('Death Spank', 'http://www.death-spank.de', 'pdownd', 'pdownh', ''),
    Array('Die Sims', 'http://www.diesims-game.de/', 'pdownd', 'pdownh', ''),
    Array('Diablo', 'http://www.diablo-game.de', 'pdownd', 'pdownh', ''),
    Array('Divinity 2', 'http://www.divinedivinity2.de//', 'pdownd', 'pdownh', ''),
    Array('Dragon Age', 'http://www.dragon-age-game.de/', 'pdownd', 'pdownh', ''),
    Array('DSA: Drakensang', 'http://www.dsa-game.de/', 'pdownd', 'pdownh', ''),
    Array('Dungeon Hero', 'http://www.heroherohero.de', 'pdownd', 'pdownh', ''),
    Array('Dungeon Lords', 'http://www.dungeonlords-games.de/', 'pdownd', 'pdownh', ''),
    Array('Dungeon Party', 'http://www.dungeonparty.de/', 'pdownd', 'pdownh', ''),
    Array('Edge of Twilight', 'http://www.edgeoftwilight.de/', 'pdownd', 'pdownh', ''),
    Array('Elveon', 'http://www.elveon-game.de/', 'pdownd', 'pdownh', ''),
    Array('Fable 2', 'http://www.fable-2.de/', 'pdownd', 'pdownh', ''),
    Array('Fallout 3', 'http://www.fallout-game.de/', 'pdownd', 'pdownh', ''),
    Array('Far Cry 2', 'http://www.farcry-game.de/', 'pdownd', 'pdownh', ''),
    Array('Final Fantasy', 'http://www.final-fantasy-game.de/', 'pdownd', 'pdownh', ''),
    Array('God of War', 'http://www.godofwar-game.de', 'pdownd', 'pdownh', ''),
    Array('Gothic', 'http://de.gothic3-game.de/', 'pdownd', 'pdownh', ''),
    Array('Gothic Arcania', 'http://www.gothic-arcania.de/', 'pdownd', 'pdownh', ''),
    Array('GTA IV', 'http://www.gta4-game.de/', 'pdownd', 'pdownh', ''),
    Array('Halo', 'http://www.halo-game.de/', 'pdownd', 'pdownh', ''),
    Array('Hard to be a God', 'http://www.hardtobeagod.de/', 'pdownd', 'pdownh', ''),
    Array('H.A.W.X.', 'http://www.hawx.de/', 'pdownd', 'pdownh', ''),
    Array('Hellgate: London', 'http://www.hellgate-london-game.de/', 'pdownd', 'pdownh', ''),
    Array('Herr der Ringe Online', 'http://www.herrderringeonline.de/', 'pdownd', 'pdownh', ''),
    Array('Independent Games', 'http://www.independent-games.de/', 'pdownd', 'pdownh', ''),
    Array('KotoR', 'http://www.kotor-game.de//', 'pdownd', 'pdownh', ''),
    Array('Krieg der Galaxien', 'http://www.k-d-g.net//', 'pdownd', 'pdownh', ''),
    Array('Legend: Hand of God', 'http://www.legend-handofgod.de/', 'pdownd', 'pdownh', ''),
    Array('Lego Universe', 'http://www.logo-universe.de/', 'pdownd', 'pdownh', ''),
    Array('Left 4 Dead', 'http://www.left4dead.de/', 'pdownd', 'pdownh', ''),
    Array('Mafia 2', 'http://www.mafia2game.de/', 'pdownd', 'pdownh', ''),
    Array('Mass Effect', 'http://www.masseffect-game.de/', 'pdownd', 'pdownh', ''),
    Array('Metroid', 'http://www.metroid-game.de', 'pdownd', 'pdownh', ''),
    Array('Oblivion', 'http://www.oblivion-game.de/', 'pdownd', 'pdownh', ''),
    Array('Overlord', 'http://www.overlord-game.de/', 'pdownd', 'pdownh', ''),
    Array('Prince of Persia', 'http://www.princeofpersia-game.de/', 'pdownd', 'pdownh', ''),
    Array('Sacred 2', 'http://www.sacred-2.de', 'pdownd', 'pdownh', ''),
    Array('Shadowrun', 'http://www.shadowrun-game.de/', 'pdownd', 'pdownh', ''),
    Array('Silverfall', 'http://www.silverfall-game.de/', 'pdownd', 'pdownh', ''),
    Array('Sins of a Solar Empire', 'http://www.sinsofasolarempire.de/', 'pdownd', 'pdownh', ''),
    Array('Splinter Cell', 'http://www.splintercell-game.de/', 'pdownd', 'pdownh', ''),
    Array('Spore', 'http://www.spore-game.de/', 'pdownd', 'pdownh', ''),
    Array('Stalker', 'http://www.stalker-shooter.de/', 'pdownd', 'pdownh', ''),
    Array('Starcraft', 'http://www.starcraft-game.de/', 'pdownd', 'pdownh', ''),
    Array('Stargate Online', 'http://www.stargateonline.de/', 'pdownd', 'pdownh', ''),
    Array('Swarm', 'http://www.swarm-game.de/', 'pdownd', 'pdownh', ''),
    Array('The Force Unleashed', 'http://www.theforceunleashed.de/', 'pdownd', 'pdownh', ''),
    Array('Titan Quest', 'http://www.titanquest-game.de/', 'pdownd', 'pdownh', ''),
    Array('The Crossing', 'http://www.the-crossing.de/', 'pdownd', 'pdownh', ''),
    Array('The Witcher', 'http://www.witcher-game.de/', 'pdownd', 'pdownh', ''),
    Array('Tomb Raider', 'http://www.tombraider-game.de/', 'pdownd', 'pdownh', ''),
    Array('Two Worlds', 'http://www.twoworlds-game.de/', 'pdownd', 'pdownh', ''),
    Array('Universe at War', 'http://www.universeatwar.de/', 'pdownd', 'pdownh', ''),
    Array('Venetica', 'http://www.veneticagame.de/', 'pdownd', 'pdownh', ''),
    Array('Verknotete Finger', 'http://www.verknotetefinger.de/', 'pdownd', 'pdownh', ''),
    Array('Warhammer Online', 'http://www.warhammer-game.de/', 'pdownd', 'pdownh', 'style="margin-bottom: 1px;"'),
    Array('Android', 'http://www.android-os.de/', 'pdownd', 'pdownh', ''),
    Array('Temeraire', 'http://www.temeraire.de/', 'pdownd', 'pdownh', '')),

menu2 = Array(
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/uk.gif" alt="" border="0" /> Assassin\'s Creed', 'http://www.assassinscreed.net/', 'pdownd', 'pdownh', ''),
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/uk.gif" alt="" border="0" /> Bioshock', 'http://www.bio-shock.com/', 'pdownd', 'pdownh', ''),
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/uk.gif" alt="" border="0" /> Drakensang: The Dark Eye', 'http://www.drakensang.info/', 'pdownd', 'pdownh', ''),
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/uk.gif" alt="" border="0" /> Gothic 3 EN', 'http://en.gothic3-game.de/', 'pdownd', 'pdownh', ''),
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/ro.gif" alt="" border="0" /> Gothic 3 RO', 'http://ro.gothic3-game.de/', 'pdownd', 'pdownh', ''),
    Array('<img src="http://www.globalgameport.com/netzwerkleiste/uk.gif" alt="" border="0" /> Two Worlds', 'http://www.twoworlds-game.com/', 'pdownd', 'pdownh', ''));
menu3 = Array(
    Array('GGP Forum', 'http://www.globalgameport.com/', 'pdownd', 'pdownh', ''),
    Array('Registrieren', 'http://www.globalgameport.com/register.php', 'pdownd', 'pdownh', ''),
    Array('GGP Jobs', 'http://jobs.globalgameport.com/', 'pdownd', 'pdownh', 'style="margin-bottom: 1px;"'),
    Array('Adventure-Box', 'http://www.globalgameport.com/forumdisplay.php?f=98', 'pdownd', 'pdownh', ''),
    Array('Alien-Game', 'http://www.globalgameport.com/forumdisplay.php?f=542', 'pdownd', 'pdownh', ''),
    Array('Alone in the Dark', 'http://www.globalgameport.com/forumdisplay.php?f=367', 'pdownd', 'pdownh', ''),
    Array('Assassin\'s Creed', 'http://www.globalgameport.com/forumdisplay.php?f=68', 'pdownd', 'pdownh', ''),
    Array('Battlefield Heros', 'http://www.globalgameport.com/forumdisplay.php?f=412', 'pdownd', 'pdownh', ''),
    Array('Battle Forge', 'http://www.globalgameport.com/forumdisplay.php?f=448', 'pdownd', 'pdownh', ''),
    Array('Bioshock', 'http://www.globalgameport.com/forumdisplay.php?f=62', 'pdownd', 'pdownh', ''),
    Array('Boom Blox', 'http://www.globalgameport.com/forumdisplay.php?f=408', 'pdownd', 'pdownh', ''),
    Array('Borderlands', 'http://www.globalgameport.com/forumdisplay.php?f=530', 'pdownd', 'pdownh', ''),
    Array('Call of Duty', 'http://www.globalgameport.com/forumdisplay.php?f=517 ', 'pdownd', 'pdownh', ''),
    Array('Crysis', 'http://www.globalgameport.com/forumdisplay.php?f=92', 'pdownd', 'pdownh', ''),
    Array('Diablo', 'http://www.globalgameport.com/forumdisplay.php?f=432', 'pdownd', 'pdownh', ''),
    Array('DieSims', 'http://www.globalgameport.com/forumdisplay.php?f=301', 'pdownd', 'pdownh', ''),
    Array('Divinity 2', 'http://www.globalgameport.com/forumdisplay.php?f=440', 'pdownd', 'pdownh', ''),
    Array('Dragon Age', 'http://www.globalgameport.com/forumdisplay.php?f=144', 'pdownd', 'pdownh', ''),
    Array('DSA: Drakensang', 'http://www.globalgameport.com/forumdisplay.php?f=72', 'pdownd', 'pdownh', ''),
    Array('Dungeon Hero', 'http://www.globalgameport.com/forumdisplay.php?f=315', 'pdownd', 'pdownh', ''),
    Array('Dungeon Lords', 'http://www.globalgameport.com/forumdisplay.php?f=430', 'pdownd', 'pdownh', ''),
    Array('Dungeon party', 'http://www.globalgameport.com/forumdisplay.php?f=412', 'pdownd', 'pdownh', ''),
    Array('Fable 2', 'http://www.globalgameport.com/forumdisplay.php?f=339', 'pdownd', 'pdownh', ''),
    Array('Fallout 3', 'http://www.globalgameport.com/forumdisplay.php?f=313', 'pdownd', 'pdownh', ''),
    Array('Far Cry 2', 'http://www.globalgameport.com/forumdisplay.php?f=393', 'pdownd', 'pdownh', ''),
    Array('Final Fantasy', 'http://www.globalgameport.com/forumdisplay.php?f=452', 'pdownd', 'pdownh', ''),
    Array('God of War', 'http://www.globalgameport.com/forumdisplay.php?f=548', 'pdownd', 'pdownh', ''),
    Array('Gothic', 'http://www.globalgameport.com/forumdisplay.php?f=42', 'pdownd', 'pdownh', ''),
    Array('GTA 4', 'http://www.globalgameport.com/forumdisplay.php?f=319', 'pdownd', 'pdownh', ''),
    Array('Halo', 'http://www.globalgameport.com/forumdisplay.php?f=131', 'pdownd', 'pdownh', ''),
    Array('Hard to be a God', 'http://www.globalgameport.com/forumdisplay.php?f=341', 'pdownd', 'pdownh', ''),
    Array('H.A.W.X.', 'http://www.globalgameport.com/forumdisplay.php?f=421', 'pdownd', 'pdownh', ''),
    Array('Hellgate: London', 'http://www.globalgameport.com/forumdisplay.php?f=13', 'pdownd', 'pdownh', ''),
    Array('Herr der Ringe Online', 'http://www.globalgameport.com/forumdisplay.php?f=184', 'pdownd', 'pdownh', ''),
    Array('Independent Games', 'http://www.globalgameport.com/forumdisplay.php?f=395', 'pdownd', 'pdownh', ''),
    Array('KotoR', 'http://www.globalgameport.com/forumdisplay.php?f=442', 'pdownd', 'pdownh', ''),
    Array('Left 4 Dead', 'http://www.globalgameport.com/forumdisplay.php?f=294', 'pdownd', 'pdownh', ''),
    Array('Legend: Hand of God', 'http://www.globalgameport.com/forumdisplay.php?f=88', 'pdownd', 'pdownh', ''),
    Array('Mass Effect', 'http://www.globalgameport.com/forumdisplay.php?f=140', 'pdownd', 'pdownh', ''),
    Array('Metroid', 'http://www.globalgameport.com/forumdisplay.php?f=534', 'pdownd', 'pdownh', ''),
    Array('Oblivion', 'http://www.globalgameport.com/forumdisplay.php?f=11', 'pdownd', 'pdownh', ''),
    Array('Overlord', 'http://www.globalgameport.com/forumdisplay.php?f=287', 'pdownd', 'pdownh', ''),
    Array('Prince of Persia', 'http://www.globalgameport.com/forumdisplay.php?f=400', 'pdownd', 'pdownh', ''),
    Array('Sacred 2', 'http://www.globalgameport.com/forumdisplay.php?f=317', 'pdownd', 'pdownh', ''),
    Array('Sins of a Solar Empire', 'http://www.globalgameport.com/forumdisplay.php?f=347', 'pdownd', 'pdownh', ''),
    Array('Silverfall', 'http://www.globalgameport.com/forumdisplay.php?f=90', 'pdownd', 'pdownh', ''),
    Array('Spore', 'http://www.globalgameport.com/forumdisplay.php?f=212', 'pdownd', 'pdownh', ''),
    Array('Splinter Cell', 'http://www.globalgameport.com/forumdisplay.php?f=502', 'pdownd', 'pdownh', ''),
    Array('Stalker', 'http://www.globalgameport.com/forumdisplay.php?f=142', 'pdownd', 'pdownh', ''),
    Array('Starcraft', 'http://www.globalgameport.com/forumdisplay.php?f=434', 'pdownd', 'pdownh', ''),
    Array('Star Wars', 'http://www.globalgameport.com/forumdisplay.php?f=442', 'pdownd', 'pdownh', ''),
    Array('Titan Quest', 'http://www.globalgameport.com/forumdisplay.php?f=66', 'pdownd', 'pdownh', ''),
    Array('The Crossing', 'http://www.globalgameport.com/forumdisplay.php?f=296', 'pdownd', 'pdownh', ''),
    Array('The Witcher', 'http://www.globalgameport.com/forumdisplay.php?f=298', 'pdownd', 'pdownh', ''),
    Array('Tomb Raider', 'http://www.globalgameport.com/forumdisplay.php?f=403', 'pdownd', 'pdownh', ''),
    Array('Two Worlds', 'http://www.globalgameport.com/forumdisplay.php?f=70', 'pdownd', 'pdownh', ''),
    Array('Universe at War', 'http://www.globalgameport.com/forumdisplay.php?f=291', 'pdownd', 'pdownh', ''),
    Array('Venetica', 'http://www.globalgameport.com/forumdisplay.php?f=532', 'pdownd', 'pdownh', ''),
    Array('Verknotete Finger', 'http://www.globalgameport.com/forumdisplay.php?f=398', 'pdownd', 'pdownh', ''),
    Array('Warhammer Online', 'http://www.globalgameport.com/forumdisplay.php?f=77', 'pdownd', 'pdownh', 'style="margin-bottom: 1px;"'),
    Array('Rollenspiele (Allgemein)', 'http://www.globalgameport.com/forumdisplay.php?f=20', 'pdownd', 'pdownh', ''),
    Array('Krieg der Galaxien', 'http://www.globalgameport.com/forumdisplay.php?f=214', 'pdownd', 'pdownh', ''),
    Array('Avatar-Workshop', 'http://www.globalgameport.com/AVATAR/', 'pdownd', 'pdownh', ''));

    pd_build('network', 'pdownb', menu1);
    pd_build('international', 'pdownb', menu2);
    pd_build('boards', 'pdownb', menu3);
    pd_modeShow = 0;
    pd_modeHide = 0;
    pd_delay = 600;


pd_init('network');
pd_init('international');
pd_init('boards');
