  function loadPage(country){

        if (country == "DE"){
            window.open('http://www.sigeurope.de');
        }

        if (country == "EN"){
            window.open('http://www.sigeurope.co.uk');
        }

        if (country == "FR"){
            window.open('http://www.sigsales.fr');
        }

        if (country == "IT"){
            window.open('http://dpv.it/en/homepage');
        }

        if (country == "ES"){
            window.open('http://www.sigspain.com');
        }

        if (country == "AU"){
            window.open('http://www.sigeurope.at');
        }

        if (country == "BNL"){
            window.open('http://www.serviceinnovation.be');
        }

        if (country == "POR"){
            window.open('http://www.sigportugal.com');
        }

    }

    function showSlidingDiv(){
        $("#slidingDiv").animate({"height": "toggle"}, { duration: 500 });
    }  
