$(document).ready(function(){
	//Lancer featurelist sur la page d'accueil
			$.featureList(
				$("#tabs li"),
				$("#output li"), {
					start_item	:	1
				}
			);
		//Enlever les [] sur les liens	
		if ($('a').hasClass('LinkOut')) {
			$('a').removeClass('LinkOut');
		}
		
		//Le champ de recherche
		$('.boxsearch input[type="text"]').blur(function(){
		if($(this).val() == ''){
			$(this).val('rechercher ...');
		}
		});

		$('.boxsearch input[type="text"]').focus(function(){
		if($(this).val() == 'rechercher ...'){
			$(this).val('');
		}
		});

		
		//Le champ newsletter
		$('.boxnewsletter input[type="text"]').blur(function(){
		if($(this).val() == ''){
			$(this).val('votre email ...');	
		}
		});

		$('.boxnewsletter input[type="text"]').focus(function(){
		if($(this).val() == 'votre email ...'){
			$(this).val('');
		}
		});
		
		if ($('body').hasClass('home')) {
			$('.breadcrumb').remove();
		}

});
