I have an array called markers. I have a Google Map populated with markers and I want to call a function that selects all array values so I can set all the marker images to original, before setting the new one to highlighted. This is unless there is a google api way of setting all marker images.
function show(i)
{
markers[all].setIcon("lib/images/default.png");
markers[i].setIcon("lib/images/default_h.png");
}