$(document).ready(function(){											

	$("a[rel^='clearbox'], a[rel^='fancybox']").fancybox({ 'zoomSpeedIn': 1000, 'zoomSpeedOut': 0, 'overlayShow': true }); 
	
	$(".specialiste tr:nth-child(odd)").addClass("zebra");
	
	$(".specialiste tr").mouseover(function(){
		$(this).addClass("over");}
	 ).mouseout(function(){
		$(this).removeClass("over");
	});

});