var curTrack = 1;
function showTrackDetail(cid) {
$("#tr"+curTrack).hide();
curTrack = cid;
$("#tr"+curTrack).show();
}
