
$(function(){
	
	$('#promo_slideshow').evtslideshow({
		autoPlay: true, 
		transition: 'fade',
		atEnd: 'loop',
		wait: 3000,
		speed : 2000
	});
	
	$('.promo').click(function(){
		location.href = $(this).find('a:eq(0)').attr('href');
	});
	
});

