/**
 * catalogue.js
 *
 * Created by Benoît Durand on 6 mars 2009
 *
 * @author Benoît Durand
 * @version $Id: catalogue.js 909 2009-03-11 15:56:14Z bdurand $
 */

// Lancement lorsque toute la page est chargée
$(document).ready(function() {
	$('#catalogueCategories').change(function() {
		window.location = $(this).val();
	});
});
