// JavaScript Document

$(document).ready(function(){
		  
$('#solucoes').hover(function(){
$('#solucoes > span').animate({height:'101px'},{queue:false, duration:300, easing: 'linear'})
},function(){
$('#solucoes > span').animate({height:'0px'},{queue:false, duration:300, easing: 'linear'})					
});

$('#catalogo').hover(function(){
$('#catalogo> span').animate({height:'100px'},{queue:false, duration:300, easing: 'linear'})	
},function(){
$('#catalogo> span').animate({height:'0px'},{queue:false, duration:300, easing: 'linear'})					
});

$('#institucional').hover(function(){
$('#institucional> span').animate({height:'101px'},{queue:false, duration:300, easing: 'linear'})	
},function(){
$('#institucional> span').animate({height:'0px'},{queue:false, duration:300, easing: 'linear'})					
});

$('#contato').hover(function(){
$('#contato> span').animate({height:'95px'},{queue:false, duration:300, easing: 'linear'})	
},function(){
$('#contato> span').animate({height:'0px'},{queue:false, duration:300, easing: 'linear'})					
});

			  
});
