$(document).ready(function (){ 
/*BEGIN*/

$("#registro").hover(
      function () {
		  $(this).animate({ 
			width: "60",
		  }, 200 );
      }, 
      function () {
		  $(this).animate({ 
			width: "30",
		  }, 200 );
      }
);





/*END*/
});
