// JavaScript Document


$(document).ready( function() {
	
	
	// INITIALISATION
	
	var _bandeaux = [$('#saison'), $('#artdanthe'), '', '', '', ''];
	var _sous_rub_new = '';
	var _sous_rub_old = '';
	
	var _efface_bandeau = true;
	var _efface_sous_rub = true;
	var _speed = 250;
	
	
	$('#secondaire').css({ 'opacity':0 });
	
	$('#principale li').each( function(num) {
		
		$(this).attr('rel', num);
		position = $(this).position();
		// $(_bandeaux[num]).css( { 'opacity':0, 'margin-left':position.left, 'display':'none' });
		$(_bandeaux[num]).css( { 'opacity':0, 'margin-left':position.left });
		
		if ($(this).hasClass('active')) {
			// ----- Traitement rubrique déployée
		};
		
	});
	
	$(window).resize(function(){
		
		$('#principale li').each( function(num) {
			position = $(this).position();
			$(_bandeaux[num]).css( { 'opacity':0, 'margin-left':position.left });			
		});
		
	});
	
	
	// ROLLOVERS
	
	$('#principale li').mouseover( function() {
	
		_sous_rub_old = _sous_rub_new
		_sous_rub_new = _bandeaux[Number($(this).attr('rel'))];
		
		if (_sous_rub_new != '') {
			if (_sous_rub_old != '') {
				if (_sous_rub_new != _sous_rub_old) {
					$(_sous_rub_old).stop().animate({ 'opacity':0 }, _speed).css({ 'display':'none' });
				};
			};
			$(_sous_rub_new).css({ 'display':'inline' });
			$(_sous_rub_new).stop().animate({ 'opacity':1 }, _speed);
			$('#secondaire').stop().animate({ 'opacity':0.85 }, _speed);
			
		} else {
			$(_sous_rub_old).stop().animate({ 'opacity':0 }, _speed).css({ 'display':'none' });
			$('#secondaire').stop().animate({ 'opacity':0 }, _speed);
		};
		
	});
	
	function CallBack (obj) {
		
		if (obj != '') {
			$(obj).css({ 'display':'none' });
		};
		
	};
	
});
