/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function() {

	$('#listeCat').toggle();

	$('#selectChangeCat').change(function(){
		$('#formSelectCat').submit();
	});

	$('#linkAccesCat').click(function(){
		$('#listeCat').slideToggle('slow');
		if ($('#linkAccesCat>span').hasClass('fugue-control')) {
			$('#linkAccesCat>span').removeClass('fugue-control').addClass('fugue-control-270');
		} else {
			$('#linkAccesCat>span').removeClass('fugue-control-270').addClass('fugue-control');
		}

	});
	
});


