﻿
$(document).ready(function () {
    init();
});

function init() {

    loadTopPromotion();
    RotateTopPromotion();
    
}

function loadTopPromotion() {
    $imgpath = "../Images";
    $topbannerpromo = ["partner_web_banner_able.jpg","partner_web_banner_universal.jpg", "logo_abm-industries_banner.jpg"];
    $linktopbannerpromo = ["http://www.ableserve.com ", "http://www.universalpro.com", "http://www.abm.com"];
    var imageRotation = "";
    $.each($topbannerpromo, function (index, value) {
        $imageFullPath = $imgpath + '/' + value.toString();
        imageRotation = imageRotation + "<li>" + "<a href=\"" + $linktopbannerpromo[index].toString() + "\" target=\"_blank\">" + "<img src=\"" + $imageFullPath + "\"" + "/>" + "</a>"+"</li>";
    });
    $("#ShockwaveFlash1").html(imageRotation);
}

function RotateTopPromotion() {
    $("#ShockwaveFlash1").innerfade({
        speed:'slow',
        type: 'sequence'
    });
}
