$(function(){
   $('#logo-angulare').animate({opacity: 0.6}, 300 );
		$('#logo-angulare').hover(
		function(){
		   $(this).stop().animate({opacity: 1 , width: 119 + 'px' }, 300 );
		},
		function(){
		   $(this).stop().animate({opacity: 0.6 , width: 29 + 'px' }, 300 );
		}); 
		
	
	$('#redes a').hover(function() {
		$('#redes a').not(this).stop().fadeTo('fast', 0.3);
		}, function() {
		$('#redes a').stop().fadeTo('fast', 1.0);
	});		
		
		
	$('.quadro').hover(function() {
		$(this).animate({marginTop: -5+'px'});
		}, function() {
		$(this).animate({marginTop: 0+'px'});
	});	
    
	$('.produto , .coluna-produto').hover(
	function(){
	   $(this).addClass('produto-ativo');
	},
	function(){
	   $(this).removeClass('produto-ativo');
	});
	
	$('#banner').cycle({ 
			fx:     'fade',
			speed:    1000
	});
	
	
	

	
});
