
function initMenus() {
	$('ul.menu ul').hide();
	$("a.first").css({background:"#f4f2df url(plus.png) no-repeat 99% center"});
	$("a.first").hover(function(){
		$(this).css({color: "#fff", background:"#333 url(plus.png) no-repeat 99% center"});		
	},function(){
		$(this).css({color: "#6b0202", background:"#f4f2df url(plus.png) no-repeat 99% center"});
	});
	$.each($('ul.menu'), function(){
		$('#' + this.id + '.expandfirst ul:first').show();
	});
	$('ul.menu li a').click(
		function() {
			var checkElement = $(this).next();
			var parent = this.parentNode.parentNode.id;

			if($('#' + parent).hasClass('noaccordion')) {
				$(this).next().slideToggle('normal');
				return false;
			}
			if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
				if($('#' + parent).hasClass('collapsible')) {
					$('#' + parent + ' ul:visible').slideUp('normal');
				}
				$(this).css({color: "#6b0202", background:"#f4f2df url(plus.png) no-repeat 99% center"});
				$(this).hover(function(){
					$(this).css({color: "#fff", background:"#333 url(plus.png) no-repeat 99% center"});
				},function(){
					$(this).css({color: "#6b0202", background:"#f4f2df url(plus.png) no-repeat 99% center"});
				});
				return false;
			}
			if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
				$('#' + parent + ' ul:visible').slideUp('normal');
				checkElement.slideDown('normal');
				$("a.first").css({color: "#6b0202", background:"#f4f2df url(plus.png) no-repeat 99% center"});
				$("a.first").hover(function(){
					$(this).css({color: "#fff", background:"#333 url(plus.png) no-repeat 99% center"});
				},function(){
					$(this).css({color: "#6b0202", background:"#f4f2df url(plus.png) no-repeat 99% center"});
				});
				
				$(this).css({color: "#fff", background:"#333 url(moins.png) no-repeat 99% center"});
				$(this).hover(function(){
					$(this).css({color: "#fff", background:"#333 url(moins.png) no-repeat 99% center"});
				},function(){
					$(this).css({color: "#fff", background:"#333 url(moins.png) no-repeat 99% center"});
				});
				return false;
			}
		}
	);
}
$(document).ready(function() {initMenus();});
