$().ready(function(){
            arrayNumSort = function(a,b){
                return b - a;
            }
            sameHights = function(objects){
                var objHeights = new Array();
                objects.each(function(){
                    objHeights.push($(this).height());
                });
                //console.log(objHeights);
                objHeights.sort(arrayNumSort);
                //console.log(objHeights);
                objects.each(function(){
                    $(this).css("height", objHeights[0] + "px");
                });
            }

            $(".box-50 .content table tbody tr:even").each(function(){
                $(this).css("background-color", "#3D4E57");
                $(this).children().css("color", "#FFFFFF");
            });
            $(".box-50 .content table tbody tr:odd").each(function(){
                $(this).children(":last").css("color", "#DA2019");
            });
            sameHights($(".box-50").children());
        });

if((window.location.hostname + window.location.pathname) == "xtechskates.com/" ||
       (window.location.hostname + window.location.pathname) == "www.xtechskates.com/" ||
       (window.location.hostname + window.location.pathname) == "www.xtechskates.com" ||
       (window.location.hostname + window.location.pathname) == "xtechskates.com"){
        
        self.location.href = 'http://www.xtechskates.com/de/home';
    }

if((window.location.hostname + window.location.pathname) == "xtechspeedskates.com/" ||
       (window.location.hostname + window.location.pathname) == "www.xtechspeedskates.com/" ||
       (window.location.hostname + window.location.pathname) == "www.xtechspeedskates.com" ||
       (window.location.hostname + window.location.pathname) == "xtechspeedskates.com"){
        
        self.location.href = 'http://www.xtechskates.com/de/home';
    }
