Price: US $16,800.00 SOLD OUT
1961 MG Midget
ASK SELLER QUESTION
var photo_list = document.getElementById('photo_list');
var mouse_on = 0;
var photoIndexTracker = 0;
var pictures = new Array();
pictures[0] = "http://photos.ecarlist.com/1D/gk/w5/4F/dr/1V/Sz/6r/zq/9o/rA_640.jpg";
pictures[1] = "http://photos.ecarlist.com/sS/xD/T9/uc/e4/3h/Jx/3y/nY/T8/lw_640.jpg";
pictures[2] = "http://photos.ecarlist.com/gq/tX/fw/e2/IS/Kz/ON/iG/Gb/WG/8A_640.jpg";
pictures[3] = "http://photos.ecarlist.com/CH/AA/vu/WD/1a/Om/B2/Xi/xq/Ay/Ow_640.jpg";
pictures[4] = "http://photos.ecarlist.com/7z/43/zP/OL/oP/8f/3p/f2/NA/ME/gA_640.jpg";
pictures[5] = "http://photos.ecarlist.com/rp/VK/zZ/tv/ue/yH/44/a4/eJ/sd/8g_640.jpg";
pictures[6] = "http://photos.ecarlist.com/p5/NG/tD/JU/w6/y1/Pq/cM/Ep/Nk/LA_640.jpg";
pictures[7] = "http://photos.ecarlist.com/CZ/OQ/B6/oq/YX/n0/11/JU/Jc/7S/Cw_640.jpg";
pictures[8] = "http://photos.ecarlist.com/UZ/fd/hB/W8/2U/VS/e9/LV/wW/3K/Lg_640.jpg";
pictures[9] = "http://photos.ecarlist.com/e8/6Y/fv/R8/I9/dX/R8/qv/SI/Kh/NA_640.jpg";
pictures[10] = "http://photos.ecarlist.com/EJ/vu/CI/HB/Is/Ku/H1/3g/Aa/fw/JQ_640.jpg";
pictures[11] = "http://photos.ecarlist.com/hC/Ml/te/4v/HA/WL/lP/eR/Pu/Aa/Jw_640.jpg";
pictures[12] = "http://photos.ecarlist.com/wH/2H/3T/tL/zz/Qe/PN/tu/H6/26/Yg_640.jpg";
pictures[13] = "http://photos.ecarlist.com/Lo/w6/jn/Vr/VZ/Dz/Hv/0d/lv/MD/3w_640.jpg";
pictures[14] = "http://photos.ecarlist.com/jh/PR/Bw/il/xb/Qo/BY/Aa/Ay/wZ/2A_640.jpg";
pictures[15] = "http://photos.ecarlist.com/1o/uF/Q1/59/6r/kE/pw/1r/cj/Nz/iA_640.jpg";
pictures[16] = "http://photos.ecarlist.com/KF/MH/Ws/1z/DE/jd/im/jb/vT/19/9w_640.jpg";
pictures[17] = "http://photos.ecarlist.com/35/4C/Bh/cY/Ru/PQ/AG/HJ/Tz/Dl/og_640.jpg";
pictures[18] = "http://photos.ecarlist.com/of/Ry/z1/No/DK/m1/5T/4C/wn/xh/Fw_640.jpg";
pictures[19] = "http://photos.ecarlist.com/nW/Ub/pw/8v/ci/O7/mA/ai/uf/ZW/mw_640.jpg";
pictures[20] = "http://photos.ecarlist.com/E1/X2/KD/ZH/fJ/1q/QG/jR/zP/m2/eQ_640.jpg";
pictures[21] = "http://photos.ecarlist.com/rI/0D/3I/Ju/eO/sU/WR/cI/5j/y2/9Q_640.jpg";
pictures[22] = "http://photos.ecarlist.com/qG/iZ/a8/E0/mW/wt/zB/Lr/Yk/3s/SA_640.jpg";
pictures[23] = "http://photos.ecarlist.com/76/wl/m7/XC/at/wC/yr/tG/rF/gG/7w_640.jpg";
pictures[24] = "http://photos.ecarlist.com/UL/dF/7E/Y6/xq/g7/v9/JM/rK/d2/TQ_640.jpg";
pictures[25] = "http://photos.ecarlist.com/4q/t7/KB/rq/iI/YS/2O/Bb/Gy/aN/EQ_640.jpg";
pictures[26] = "http://photos.ecarlist.com/Wo/yW/No/KX/tP/Gv/TH/Fi/47/us/fw_640.jpg";
pictures[27] = "http://photos.ecarlist.com/ex/dQ/uK/LT/K0/z4/iw/r2/2a/yw/vw_640.jpg";
pictures[28] = "http://photos.ecarlist.com/DD/Gm/9b/Gj/fh/aJ/3S/7B/9i/lB/Hw_640.jpg";
pictures[29] = "http://photos.ecarlist.com/iR/7J/r6/p9/ru/K6/Gh/ba/fk/0D/3A_640.jpg";
pictures[30] = "http://photos.ecarlist.com/Is/pn/Cf/Ql/93/EP/3I/vU/26/UJ/kg_640.jpg";
function scroll_photo_list_up() {
if (mouse_on == 1) {
if( photo_list.scrollTop > 0 ) {
photo_list.scrollTop -= 2;
setTimeout("scroll_photo_list_up()",1);
} else {
mouse_on = 0;
photo_list.scrollTop = 0;
}
}
}
function scroll_photo_list_down() {
if (mouse_on == 1) {
if( ( photo_list.scrollHeight - photo_list.scrollTop ) > 0 ) {
photo_list.scrollTop += 2;
setTimeout("scroll_photo_list_down()",1);
} else {
mouse_on = 0;
photo_list.scrollTop = photo_list.scrollHeight;
}
}
}
function scroll_photo_list_exit() {
mouse_on = 0;
}
function display_previous_photo() {
var photoIndex = photoIndexTracker - 1;
photoIndex = photoIndex < 0 ? ( pictures.length - 1 ) : photoIndex;
display_photo(photoIndex);
}
function display_next_photo() {
var photoIndex = photoIndexTracker + 1;
photoIndex = photoIndex > ( pictures.length - 1 ) ? 0 : photoIndex;
display_photo(photoIndex);
}
var width;
function display_photo(photoIndex) {
photoIndexTracker = photoIndex;
var img = new Image();
img.onload = function(){
var main_picture = document.getElementById('main_picture');
if( !(main_picture) || main_picture.tagName == 'IMG' ){
var aspect = this.width / this.height;
width = width || document.getElementById('main_picture_img').getAttribute('width');
var height = width / aspect;
main_picture = document.createElement('div');
main_picture.setAttribute('id', 'main_picture');
main_picture.style.height = height + 'px';
main_picture.style.width = width + 'px';
main_picture.style.border = '1px solid #999';
document.getElementById('main_picture_img').parentNode.replaceChild(main_picture,document.getElementById('main_picture_img'));
var photo_list = document.getElementById('photo_list');
var photo_list_up = document.getElementById('photo_list_up');
if( photo_list ){
photo_list.style.height = height - photo_list_up.offsetHeight + 3 + 'px';
}
}
//set img height
main_picture.style.background = 'url(' + this.src + ') no-repeat center center';
};
img.src = pictures[photoIndex];
}
function imageholderclass(){
this.over=new Array();
this.down=new Array();
this.src=new Array();
this.store=store;
function store(src, down, over){
var AL=this.src.length;
this.src[AL]=new Image(); this.src[AL].src=src;
this.over[AL]=new Image(); this.over[AL].src=over;
this.down[AL]=new Image(); this.down[AL].src=down;
}
}
var ih = new imageholderclass();
var mouseisdown=0;
function preloader(t){
for(i=0;iCondition: Used VIN (Vehicle Identification Number): GAN1L6833 Year: 1961 Transmission: Manual Make: MG Body Type: Convertible Model: Midget Vehicle Title: Clear Engine: 4 Fuel Type: Gas Mileage: 9,768 For Sale By: Dealer Exterior Color: White Doors: 2 Interior Color: Black Drivetrain: Rear Wheel Drive