$().ready(function(){											
	
	$("a[rel='clearbox'], a[rel='fancybox']").fancybox({ 'zoomSpeedIn': 1000, 'zoomSpeedOut': 700, 'overlayShow': true, 'hideOnContentClick': true });
	
	$('table')
		.bind('mouseover', function (e) {
			$(this).stop().animate({backgroundColor: '#ececec'}, {queue: false, duration: 400});
		})
		.bind('mouseout', function () {
			$(this).stop().animate({backgroundColor: '#ffffff'}, {queue: false, duration: 400});
		});
	
	//$("table tr:first-child td").addClass('tdfirst');
	
});
