　
$(function(){
		$('.wall .cards li').mouseenter(function(){
			$(this).find('.back').fadeIn('fast');
			$(this).find('.label').css({'background-color':'#f00','color':'#000'});
		}).mouseleave(function(){
			$(this).find('.back').hide();
			$(this).find('.label').css({'background-color':'#000','color':'#fff'});
		});
		
		$('.slideshow').cycle({
			fx: 'scrollDown',
			easing: 'easeOutQuart',
			speed:  600,
			timeout: 4000
		});
	})
