var thisNamespace = 'modules.Casting.Navigation.Zapping';
var thisPackage   = {
	
	initialize: function() {
		Logger.info('init modules.Casting.Navigation.Zapping');
		
		$$('select.js-relocate-on-change').invoke('observe', 'change', function(event) {
			event.stop();
			if(this.value) {
				window.location.href = this.value; 
			}
			return false;
		});
	}
}
addPackage(thisNamespace, thisPackage, true);