
window.addEvent('domready', function() {
	if($('filtre_chado')){
		var s8 = new CustomSelect($('filtre_chado'), {
			theme : 'simplifica',   
			onChange: function(el) {
				if(this.select.options[ this.selectedIndex ].get('value')!=0) window.location.href=this.select.options[ this.selectedIndex ].get('value');
			}
		});
	}
	if($('filtre_appel')){
		var s9 = new CustomSelect($('filtre_appel'), {
			theme : 'simplifica',   
			onChange: function(el) {
				if(this.select.options[ this.selectedIndex ].get('value')!=0) window.location.href=this.select.options[ this.selectedIndex ].get('value');
			}
		});
	}
	if($('filtre_type')){
		var s10 = new CustomSelect($('filtre_type'), {
			theme : 'simplifica',   
			onChange: function(el) {
				if(this.select.options[ this.selectedIndex ].get('value')!=0) window.location.href=this.select.options[ this.selectedIndex ].get('value');
			}
		});
	}
});
