document.write(""); document.write("
"); $(document).ready(function(){ $(".suspend").mouseover(function() { $(this).stop(); $(this).animate({width: 160}, 400); }) $(".suspend").mouseout(function() { $(this).stop(); $(this).animate({width: 40}, 400); }); });