$(function() {
    
});

if(!Veda) {
    var Veda = {};
}

Veda.combobox = function() {

    return {

        comboboxChanged: function(name) {
            
    		var url = $("select[name='" + name + "']").val();

    		if (url) {

    			window.location = url;
    		}
    	},

        locationChanged: function(name) {

            var currentUrl = window.location.href; 
            var locale = $("select[name='" + name + "']").val();
            if (!locale) {
                locale = "AU";
            }
            
            if (locale == "AU" && currentUrl.indexOf(".co.nz") != -1) {

                currentUrl = "http://vedaadvantage.com" + window.location.pathname;
            }
            
            window.location = "/dotCMS/switchLocale" 
                + "?locale=" + locale
                + "&url=" + currentUrl;

        }


    }

}();


