$(function(){
	// MENU
	$('#menus ul li.niveau_0').hover(
		function(){
			if($(this).children('ul.niveau_1').length > 0){
				$(this).children('ul.niveau_1').stop(true, true).show();
			}
		},
		function(){
			if($(this).children('ul.niveau_1').length > 0){
				$(this).children('ul.niveau_1').hide();
			}
		}
	);
	
	
	// FLASH INFO ANIMATION TEXTE
	function mot_flash_info(i_mot){
		if($('.flash_info_titre_mot_'+i_mot)){
			$('.flash_info_titre_mot_'+i_mot).animate({'opacity': 1}, 2000);
		}else
			clearInterval(mot_interval);
	}
	
	$('.flash_info_titre.active span').css({'opacity': 0});
	var i_mot = 0;
	var mot_interval = 0;
	mot_interval = setInterval(function(){
		mot_flash_info(i_mot++);
	}, 200);
	
	// FLASH INFO OUVERTURE
	$('#container_flash_info, .facebook, .twitter').hover(
		function(){
			var el = $('#container_flash_info');
			if(!el.data('height'))
				el.data('height', el.css('height', 'auto').height()).css('height', 32);
			
			el.stop().animate({'height': el.data('height')}, function(){
				$(this).css('height', 'auto');
			});
		}, function(){
			$('#container_flash_info').stop().animate({'height': 32});
		}
	);
	
	
	// FLASH INFOS
	$('.flash_info_titre').click(function(){
		if($('.flash_info_texte').length > 1){
			$('.flash_info_texte').slideUp();
			$(this).next('.flash_info_texte').stop(true).slideDown();
		}
	});
	
	
	// NEWSLETTER 
	$('#text_newsletter').focus(function(){
		if($(this).val() == 'Votre adresse email')
			$(this).val('');
	}).blur(function(){
		if($(this).val() == '')
			$(this).val('Votre adresse email');
	});
});
