
var dpw_gSlideshowInterval = 3000;
var dpw_gImagePath = "http://dpw.widget.images.2.s3.amazonaws.com/";

dpw_gImages = new Array(27);

for (var index = 0; index < 27; index++) {
    /*
    if (index === 1 || index === 2 || index === 12 || index === 13) {
    dpw_gImages[index] = 'africa.png?v=1.0';
    }
    else
    */
        if (index === 3 || index === 4 || index === 23 || index === 24) {
        dpw_gImages[index] = 'joinUs.png';
    }
    else {
        dpw_gImages[index] = String(index + 1) + ".png";
    }
}

function dpw_canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}
function dpw_loadSlide(imageURL) {
    if (dpw_gImageCapableBrowser) {
        document.dpw_slide.src = imageURL;

        var parentDiv = document.getElementById('dpw_widget');
        var theLink = parentDiv.childNodes[1];

        if (theLink) {
            if (imageURL.indexOf('africa') > -1) {
                theLink.href = 'http://www.dailypaintworks.com/Challenge/everymothercounts';
            }
            else if (imageURL.indexOf('join') > -1) {
                theLink.href = 'http://www.dailypaintworks.com/Account/JoinUs';
            }
            else {
                theLink.href = 'http://www.dailypaintworks.com';
            }
        }
        
        return false;
	}
	else {
		return true;
	}
}
function dpw_nextSlide() {
    dpw_gCurrentImage = (dpw_gCurrentImage + 1) % 27;
    dpw_loadSlide(dpw_gImagePath + dpw_gImages[dpw_gCurrentImage]);
}

