/* ****************************************************

	@file:		   global.js
	@description:  Fichier de comportements globaux
	@author:       remi (ixmedia.com)
	@updated:	   20080430

***************************************************** */

/**
 * jQuery.alt + jQuery.iif
 * ---------------------------------------
 */
jQuery.fn.extend({ 
	'alt' : function(bool, fn_true, fn_false) { 
		(bool) ? fn_true() : fn_false(); 
		return this; 
	}, 
	'iif' : function(bool) { 
		return (bool) ? this : jQuery(''); 
	} 
}); 


$(document).ready(function() {
	$('#sidebar ul li:not(.current_page_item):not(.current_page_ancestor) ul')
	.hide();
	
	$('#sidebar ul li ul')
	.parent()
	.children('a')
	.click(function() {
		if ($(this).next().is('ul')) {
			/*$(this).toggleClass('actif');
			$(this).next().slideToggle(300);
			*/
			var lien = $(this).next().find('a');
			var reg = /\/nouvelles\/archives\//;
			if (lien[0].href.match(reg) == null) {
				window.location = lien[0].href;
				return false;
			}
		}
	});
});
