$(function(){
	
	$('#slideshow').cycle({ 
	    fx:    'fade', 
	    speed:  2000 
	 });	
	
	$('a.cbox').colorbox();
	
	$('div.partner').css({opacity: '0.5'});
	$('div.partner').hover(function(){
		$(this).css({opacity: '1'});
	}, function(){
		$(this).css({opacity: '0.3'});
	});
});


