jQuery(document).ready(function($) {
        $('table').css({
            'width':'100%',
            'borderSpacing':'0px'
        });
        $('table td,table th').css('padding','5px');
        $('table thead').css('backgroundColor','black');
        $('table tr:even').css({
            'backgroundColor':'#7C7C7C',
            'color':'black'
        });
        $('table tr:odd').css({
            'backgroundColor':'#6D6D6D',
            'color':'black'
        });
});

jQuery(document).ready(function($) {
    $('#lang').change(function() {
        top.location.href = this.value + pageUri;
    })
});
