function SetImageMap(identifier)
{
    $('.rotatorThumbnail').each(function(index) {
        if (this.src.indexOf(identifier) >= 0) {
            this.useMap = '#rotator';
        }
    }
    );
}

