/*
* JQUERY SIMPLE MENU 
*/
$(document).ready(function(){
var Duration = 180; //time in milliseconds

	      $('#anima a:[class!="act"]').hover(function() {
	        $(this).find('b').animate({ height: '80px' }, Duration);
	      }, function() {
	        $(this).find('b').animate({ height: '5px'}, Duration);           
	      });
});


