var theImages = new Array()
theImages[0] = '/storage/image/rotator/rotator_greenbox.jpg'
theImages[1] = '/storage/image/rotator/rotator_box.jpg'
theImages[2] = '/storage/image/rotator/rotator_boxesport.jpg'
theImages[3] = '/storage/image/rotator/rotator_bridge.jpg'
theImages[4] = '/storage/image/rotator/rotator_crane.jpg'
theImages[5] = '/storage/image/rotator/rotator_reefers.jpg'
theImages[6] = '/storage/image/rotator/rotator_train.jpg'
theImages[7] = '/storage/image/rotator/rotator_truck.jpg'
theImages[8] = '/storage/image/rotator/rotator_vesselbridge.jpg'
theImages[9] = '/storage/image/rotator/rotator_vesselcanal.jpg'
theImages[10] = '/storage/image/rotator/rotator_vesselzoom.jpg'
theImages[11] = '/storage/image/rotator/rotator_reefers.jpg'
var j = 0
var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
var write_response = '<img src="'+theImages[whichImage]+'" width="480" height="326">';
if(whichImage == 0)
    write_response = '<input type="image" src="'+theImages[whichImage]+'" style="border-width:0px;height:326px;width:480px;" onclick="javascript:go_green();" title="Click for details" />';
document.write(write_response);
}
function go_green()
{ window.location="/green-commitment/" }

