/**
 * Created by JetBrains PhpStorm.
 * User: Brewing
 * Date: 10.06.11
 * Time: 09:52
 * To change this template use File | Settings | File Templates.
 */
jQuery(document).ready(function() {
    jQuery("#lang").change(function () {

        var str = "";
        jQuery("#lang option:selected").each(function () {

            str = jQuery(this).text();
            if (str == 'en') {
                window.location.href = 'http://www.afri.at/en';

            } else if (str == 'at') {
                window.location.href = 'http://www.afri.at'; ;
            }
        });
    })
    .trigger('change');
});
