$(document).ready(function(){
    $("#choix_lieu select").change(function() {
        if (this.options[this.selectedIndex].value) {
            if (!this.options[this.selectedIndex].defaultSelected) {
                document.location.href = base_url + this.options[this.selectedIndex].value;
            }
        } else {
            for (var i = 0; i < this.options.length; i++) {
                var option = this.options[i];
                if (option.defaultSelected) {
                    setTimeout("$('#choix_lieu select').getSetSSValue('" + option.value + "');", 100);
                    break;
                }
            }
        }
    });
    $("#choix_lieu select").sSelect();
    $('body').attr('onload', 'tailleImage();');
});

