// JavaScript Document

(function() {
var imgs = new Array(); var imglinks = new Array();
var imgcnt = 0; var thisimg = 0;
imglinks[imgcnt] = '\/map-philippines\/k-map\/Sendong-Help-Drive\/500000000/';   
imgs[imgcnt++] = '\/map-philippines\/images\/ads3.jpg';
imglinks[imgcnt] = '\/map-philippines\/k-map\/Sendong-Help-Drive\/500000000/';   
imgs[imgcnt++] = '\/map-philippines\/images\/ads4.jpg';

function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.getElementById('rollimg').src = imgs[thisimg];
document.getElementById('rollimg').onclick =
function() {location.href=''+imglinks[thisimg];};
}
}
document.getElementById('rollimg').onclick = function() {location.href=''+imglinks[0];};
setInterval(rotate,4000);
})();
