﻿var maxWidth = 0;
var maxHeight = 0;
var controlImages = new Array();
controlImages[0] = "http://www.localpoint.ch/lpwidget/images/backward_hot.png";
controlImages[1] = "http://www.localpoint.ch/lpwidget/images/backward_cold.png";
controlImages[2] = "http://www.localpoint.ch/lpwidget/images/play_hot.png";
controlImages[3] = "http://www.localpoint.ch/lpwidget/images/play_cold.png";
controlImages[4] = "http://www.localpoint.ch/lpwidget/images/pause_hot.png";
controlImages[5] = "http://www.localpoint.ch/lpwidget/images/pause_cold.png";
controlImages[6] = "http://www.localpoint.ch/lpwidget/images/forward_hot.png";
controlImages[7] = "http://www.localpoint.ch/lpwidget/images/forward_cold.png";
controlImages[8] = "http://www.localpoint.ch/lpwidget/images/search.gif";
controlImages[9] = "http://www.localpoint.ch/lpwidget/images/zoomcold.png";
controlImages[10] = "http://www.localpoint.ch/lpwidget/images/spacer.gif";


var graphicAds = new Array();
var currentAdIndex = 0;
var totalItmes = 0;

function Graphics(link, height, width) {
    this.Link = link;
    this.Height = height;
    this.Width = width;
}
function AddImage(link, height, width) {
    var movie = new Graphics(link, height, width);
    graphicAds.push(movie);
}
function clearAdsArray(originalArray) {
    var m = 0;
    while (m < originalArray.length) {
        originalArray.splice(m, 1);
    }
    return originalArray;
}


