

var platform = navigator.platform;
var tokens = platform.split(" ");

// find all images with an srcover attribute and give
// the object the apropriate events and menu content
if (document.images) {
	for (i = 0; i < document.images.length; i++) {
		addEvent(document.images[i]);
		attachMenuContent(document.images[i]);
	}
}
