var mySiteNamespace = {}
mySiteNamespace.switchLanguage = function (lang) {
    $.cookie('language', lang, { path:'/' });
    window.location.reload();
}

$().ready(function () {
    var tmpAddress = $(location).attr('href');
    if (tmpAddress.indexOf('Order/Info') > -1 || tmpAddress.indexOf('Order/Summary') > -1 || tmpAddress.indexOf('Contact/Send') > -1 || tmpAddress.indexOf('Order/Finish') > -1) {
        $('#languageDropDown').attr('disabled', true);
    }
    $('#languageDropDown').change(function () {
        mySiteNamespace.switchLanguage($(this).val());
    });
    var tmpLangCookie = $.cookie('language');
    if (tmpLangCookie == null) {
        $('#languageDropDown').val("de");
    }
    else {
        $('#languageDropDown').val(tmpLangCookie);
    }
});
