﻿//************************************************************************************* 
// File     :   spea_branding_rotator.js 
// Requires :   mf_domLibrary_0.1.js, prototype.js
// Author   :   Kyle Weems (ksw)
// Origin   :   mindfly.com
// Created  :   March 21, 2008
// Modified :   March 21, 2008
// Purpose  :  
//*************************************************************************************

// Global Variables 

// imageNumber is the number of images total for the branding.
var imageNumber = 3;

function selectBrandingImage()
{
    var imageID = Math.floor(Math.random() * imageNumber + 1);
    $('spanBrandingLogo').writeAttribute('style','background:transparent url(/uploads/images/banner/banner_' + imageID + '.jpg) no-repeat left top;'); 
} //end of function selectBrandingImage()

addLoadEvent(selectBrandingImage);
