/*******************************************************************************
 * Initialisation menu
 ******************************************************************************/
function initMenu(){
	$('#menu > li.subMenu').bind({
		mouseenter:function(){$(this).children('ul').first().fadeIn();},
		mouseleave:function(){$(this).children('ul').first().fadeOut();}
	});
}
/*******************************************************************************
 * Affichage erreurs formulaires
 ******************************************************************************/
function showErrorFields(error_fields)
{
	if(error_fields)
	{
		var i = 0;
		for(key in error_fields){
    	 	var hash = key.split(',');
			for(id in hash)$('#'+hash[id]).delay(1000).animate({'backgroundColor': '#ffb6b6'}, 1000) ;
			
			//création box erreur
			var error_box = $('<div class="error_box"><span class="arrow"></span></div>').hide().append(error_fields[key].join('<br />')) ;
			error_box.insertBefore($('#'+hash[0]));
			if($.browser.msie) error_box.delay(1500).fadeIn();
			else error_box.delay(1000+(i*250)).fadeIn();
			
			i++;
		}
	}
}

//initialisation page
$(document).ready(function(){
  //menu
  initMenu();
  
  $('.content_box').delay(250).fadeIn(1000);
});
