$(document).ready(function() {
	// Set the width via CSS.
	$('select#formrechspec_specialites_id').ieSelectWidth ({
		containerClassName : 'select-container',
		overlayClassName : 'select-overlay'
	});
	
	$('#formrechspec_specialites_id').change(function() {
		// var action = $('#formrechspec').attr('action');
		// action = action.substring(0,(action.length-1))+$(this).val();
		
		$('#formrechspec').attr('action', $(this).val());
		$('#formrechspec').submit();
	});
	
    // select#subscale: on select, send user to selected subscale
    $("#items").change(function() {
        location.hash = "item-" + $(this).val();
    });



});
