    $("#track").mouseover (
      function () {
        $(this).animate({ 
            width: "340px"
          }, 500 );
      }
    );
    
    $("#track").mouseout (
    	function () {
	      $(this).animate({ 
	          width: "264px"
	      }, 1000 );
	    }
	);
    
    
    
    
    
