/**
 * JQUERY : ajout refonte 2010 
 **/

	$(document).ready(function() {

		//caroussel page selection
	    $('#caroussel').jcarousel({
	    	wrap: 'circular',
	    	scroll: 1,
	    	auto: 2,
	    	animation: "slow"
		});

		// page selection
		$('.infos_sup').hide();
		$('.plus_de_produits').click(function(){
			if($("#"+$(this).attr('rel')).hasClass('deplie')){
				$(this).removeClass('active');
				$("#"+$(this).attr('rel')).removeClass('deplie');
				$("#"+$(this).attr('rel')).slideUp();
			}
			else{
				$(this).addClass('active');
				$("#"+$(this).attr('rel')).addClass('deplie');
				$("#"+$(this).attr('rel')).slideDown("slow");
			}
			return false;
		})
		
		// moteur
		$('#nav_recherche input').click(function(){
			$('#nav_recherche span.active').removeClass('active');
			$(this).parent().addClass('active');
		});
		$('input#SEJOUR').attr('checked','checked');
		$('input#SEJOUR').parent().addClass('active');

		//promos
		$('div.form_tri_promos>form>p>input').replaceWith('<a href="javascript:;" onclick="recherche_promo.submit();" class="bt_rechercher"></a>');
		$('#liste_promo>span').addClass('pagination');
		
		//placeholder
		$('.nl_field_input').click(function(){
			if($(this).attr('value')=='Votre email'){
				$(this).attr('value','');
			}
		});
		$('.nl_field_input').blur(function(){
			if($(this).attr('value')==''){
				$(this).attr('value','Votre email');
			}
		});
			

	});
