/**
 * 
 */
jQuery(document).ready(function() {

	return false;
	// + ----------------------------------------------------------------
	// + Changement du comportement de la sidebar
	// + ----------------------------------------------------------------
	
	// Parcours des différents titres de niveau 3
	jQuery('#sidebars h3').each(function(i){
		
		// Affectation d'un comportement onclick
		jQuery(this).click(function(){
			
			// On slide l'élément frère dans le noeud
			jQuery(this).next().slideToggle('slow');
			
			// Affectation d'un cookie
			if (jQuery.cookie('chinois' + i) == undefined) {
				jQuery.cookie('chinois' + i, 'open');
			}
			else if (jQuery.cookie('chinois' + i) == 'open') {
				jQuery.cookie('chinois' + i, 'close');
			}
			else {
				jQuery.cookie('chinois' + i, 'open');
			}
		});
		
		// Lecture de cookie
		if (jQuery.cookie('chinois' + i) == undefined) {
			if (jQuery(this).attr('class') != 'showme') {
				jQuery(this).next().slideToggle('slow');
			}
			else {
				jQuery.cookie('chinois' + i, 'open');	
			}
		}
		else if (jQuery.cookie('chinois' + i) != 'open') {
			jQuery(this).next().slideToggle('slow');		
		}
	 });	
});
