// JavaScript Document
$(document).ready(function() { 
	try { console.log('init console... done'); } catch(e) { console = { log: function() {} } }
	
	// Bandeau bas, flottant, et gestion du resize.
	checkWidth();
	$(window).resize(function(){		  
		checkWidth();
	});
	
	// Update des citations/images dans les sous menu au survol
	menu();
	
	// Caroussel Nos Collections
	if( $('.nos-collections').size() > 0 ) {
	   $('ul.entree_collection').caroussel({liWidth: 175, nbLiVisible: 5});
	}
	// Mise à jour du zoom + pagination
	listeProduit();
	listPagination();
	
	// Slide Valeur nutritionnelle / allegene
	if($('.framework-fiche-view').size() > 0) ficheProduit();
	
	// Nos valeurs : hide/show texte
	nosValeurs();
	
	// Caroussel histoire
	if( $('.l-histoire').size() > 0 ) {
	  histoire();
	}

	// Upload field
	if( $('.nous-rejoindre').size() > 0 ) {
		$('input[type=file]').css({
			border:0,
			borderRadius:0,
			height:'auto',
			fontSize:'13px'
		})
	}
	
	
});


