$(document).ready(function(){											

	$("a[rel^='fancybox'], a[rel^='clearbox']").fancybox({ 'zoomSpeedIn': 1000, 'zoomSpeedOut': 0, 'overlayShow': true });
	
	$(".table td").each(function(){
			$(this).children("div").css("height", $(this).height()+"px");
	});
 
	$(".table th").each(function(){
			$(this).children("div").css("height", $(this).height()+"px");
	});
	
	$(".table tr:odd").addClass("zebra");

});
