            $(document).ready(function(){
                  $('.spcr a em').hide().css("opacity", 0);
                  
                  $('.spcr a').bind("mouseenter", (function()
                  {
                        $(this).children('em').animate({height: "80px", opacity: 1},300);
                  }));
                  
                  $('.spcr a').bind("mouseleave", (function()
                  {
                        $(this).children('em').animate({height: "0px", opacity: 0},300);
                  }));   
            });
