// JavaScript Document


$( function () {
	// target blank
	$('.target-blank').each(
		function()
		{
			$(this).click(
				function()
				{
					var lien = $(this).attr('href');
					window.open(lien);
					
					return false;
				}
			);			
		}
	);
	
	$('.nav_top').find('>ul').DropdownMenu ();
	
	$('.produit > ul').find('>li').each ( function () {
		$(this).find('>a').click ( function () {
			if (!$(this).parent().is('.active')) {				
				$('.produit').find('.survole-prod-wrapper').hide();
				if ( $(this).parents('.tout-pliz-prod') ) {
					$('.produit').find('.survole-prod-tout-pliz').hide();
					$('.produit').find('.survole-prod-tout-pliz').removeClass().addClass('survole-prod-tout-pliz');
				}
				$('.produit').find('.active').removeClass('active');
			}
			
			$(this).parent().toggleClass('active');
			$(this).next('.survole-prod-wrapper').toggle();
			if ( $(this).parents('.tout-pliz-prod') ) {
				var parentLi = $(this).parent('li');
				var indexLi = $(parentLi).parent('ul').find('>li').index(parentLi);
				
				if (indexLi < 2) {
					$(this).next('.survole-prod-tout-pliz').addClass('right-top');
				} else if (indexLi < 4) {
					$(this).next('.survole-prod-tout-pliz').addClass('left-top');
				} else if (indexLi < 6) {
					$(this).next('.survole-prod-tout-pliz').addClass('right-bottom');
				} else if (indexLi < 8) {
					$(this).next('.survole-prod-tout-pliz').addClass('left-bottom');
				}
				
				$(this).next('.survole-prod-tout-pliz').toggle();
			}
			return false;
		})
	});
    	
});