$(document).ready(function() {
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$(".fancy a").fancybox();
	
	$(".fancy a, #logo, #footer img").hover(function(){
		$(this).fadeTo("fast", 0.7); 
	},function(){
		$(this).fadeTo("fast", 1.0); 
	});

});