$(document).ready(function () {
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(200);
		},
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);
		}
	);
	$('#nav li').hover(function () {
		$('a.up', this).css({'background-color' : '#A2AECF'});
	}, function () {
		var cssObj = {
			'background-color' : '#D1D6E7'
		}
		$('a.up', this).css(cssObj);
	});
	$('#nav li ul li').hover(function () {
		$(this).css({'background-color' : '#D1D6E7'});
	}, function () {
		var cssObj = {
			'background-color' : '#A2AECF'
		}
		$(this).css(cssObj);
	});
	$('.content').width($('#nav').width());
	//initialize();
});

function afficheEvt(num) {
	$('#'+num+'').toggle(200);
}

function updateList(category) {
	$.post("includes/afficheResultat.php", { cat: category }, function(theResponse) {
		$('#resultat').html(theResponse);
	});
}


