//Geocode
  $(document).ready(function() {
    var country = geoplugin_countryCode();
    //IP Abfrage mittels L�ndercodes
  if(country == "UK"){
        BritEnglish();
    }else if(country =="US"){
        AmericanEnglish();
    }else if(country =="FR"){
        French();
    }else if(country=="ES"){
        Spanish();
    }else if(country=="AT"){
        German();
    }else if(country=="DE"){
        German();
    }


    //Automatische Weiterleitung an jeweilige Seite
    function German(){
        window.location.href = "http://www.medel.at/deutsch";
    }
    function BritEnglish(){
        window.location.href = "http://www.medel.com/int/index/index/id/1/title/Home";
    }
    function AmericanEnglish(){
        window.location.href = "http://www.medel.at/US/index.php";
    }
    function French(){
        window.location.href = "http://www.medel.at/french";
    }
    function Spanish(){
        window.location.href = "http://www.medel.at/spanish";
    }
    
  });
  

  

