$(document).ready(function(){
	// Cufon.replace('h1, h2');
	$('#header').click(function(){
		document.location.href = "/";
	});
	$('table tr:odd').css({
		backgroundColor: '#f4f4f4'
	});
	$('#slideshow').cycle({
		fx: 'fade'
	});
	$('#images a, .thumb a').fancybox({
		'overlayShow': true,
		'overlayOpacity': 0.9,
		'padding':20
	});
	$('#thumbnails .thumb:nth-child(2n)').css('margin-right','0');
});

