$(document).ready(function(){
	$('#imgs_home1').cycle({
		fx: 'scrollHorz',
		easing: 'easeOutQuint',
		timeout:0,
		next:'#sig', 
		prev:'#ant'
	});
	
	$('#ant,#sig').hover(function(){
		$(this).stop().animate({opacity:0.2},200);
    },function(){
		$(this).animate({opacity:1},800);
    });
	
	$('#imgs_home2 div a').hover(function(){
		$(this).stop().animate({opacity:0.7},500);
    },function(){
		$(this).animate({opacity:1},800);
    });
});
