Page is a not externally linkable
daveVk - 1:39 am on Jul 29, 2012 (gmt 0)
To access car thumbnails try
var thumbNo = 1;
var car=cars_data.haveAlook.TheThumbnails;
$(".vehicle_row a").each(function(){
$(this).html('<img src="/comparetherange/images/' +
+ car['thumb'+thumbNo]
+ '" alt="">');
thumbNo++;
});
Note that car.thumb3 and car['thumb3'] are equivalent.
This assumes the links are in same order as thumb numbers ?