﻿function RotatingGraphic(imageNumber, imageUrl, description, navigateTo, title)
{
    this.Number = imageNumber;
    this.Url = imageUrl;
    this.Description = description;
    this.NavigateTo = navigateTo;
    this.Title = title;
}