//constructeur
$(document).ready(function(){	
	//hide the all of the element with class gmlist
	$(".carslist").hide();
	//toggle the componenet with class writings
	$(".slidecars").click(function(){ 
		$(this).next(".carslist").slideToggle("slow");
	});
	
	$(".slidecars").hover(
	function(){
		$('body').css('cursor', 'pointer'); 
	}, function(){
		$('body').css('cursor', 'default');
	});
	
	$("a.dyno").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 400,
		'zoomSpeedOut'			: 400
	});
	$("a.dionviens").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 400,
		'zoomSpeedOut'			: 400
	});
	$("a.equiperg").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 400,
		'zoomSpeedOut'			: 400
	});
	$("a.team89").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 400,
		'zoomSpeedOut'			: 400
	});


});