/**
 * @author pfrumillon
 */



jQuery.noConflict();

jQuery(document).ready(function($) {
	$(".searchBlockVin select").selectbox();
	$(".searchBlockResto select").selectbox();
	$(".searchBlockFood select").selectbox();
	$('#headerSlider').coinslider({
		width: 680, // width of slider panel
		height: 206, // height of slider panel
		navigation: true,
		spw: 10, // squares per width
		sph: 1
	});


	var myClasse = ['first', 'second', 'last', 'sunfrance'];
	jQuery('#ssmenu li').each(function(elt){
		jQuery(this).addClass(myClasse[elt]);
	});



	jQuery('.searchBlockVin .row').each(function(elt){		
		jQuery(this).addClass('myRow'+elt);
	});






});




