/* Author: Thibault Mauras-Cartier */

jQuery(document).ready(function($){

$(".img_area").hover(function() {
	$(this).find('a img').animate({"opacity": 0.3}, 250);
	$(this).find('.logo').animate({bottom: "10px"}, 250);
	}, function(){
	$(this).find('a img').animate({"opacity": 1}, 250);
	$(this).find('.logo').animate({bottom: "-80px"}, 250);
});

$('ul#slideshow').innerfade({ speed: 2000, timeout: 5000, type: 'sequence', containerheight: '280px' });


});


