﻿function SetTopBarRotation(images)
{
    if (images != null && images.length > 0)
    {
        document.getElementById('header').style.backgroundImage = 'url(' + images[Math.floor(images.length * Math.random())] + ')';
    }
}
