fadeInOutButton = function(_class)
  {
    $('.'+_class).bind('mouseenter',function(){
      $(this).stop().fadeTo('slow','0.33');
    });
    $('.'+_class).bind('mouseleave',function(){
      $(this).stop().fadeTo('slow','1.00');
    });
  }

