$('document').ready(function(){
    $('#slider').hide().html(mStuff[0]).show('slide', {}, 2000);
    setTimeout('cycleDiv()', mTimeOut);
});
var mTimeOut = 6000;
var mCurrentStuff = 0;
var mStuff = new Array(
    'Welcome to the Constructors and Designers Alliance Webpage!',
    '<a href="http://events.r20.constantcontact.com/register/event?llr=74h7cqdab&oeidk=a07e3l3wpmg87eb920b&oseq=a01m1gd3aq38l">Register for the 2011 Silent Auction</a>',
    '<a href="/news.html">Check Out the News Page for Updates!!</a>',
    '<a href="/jobs.html">Learn about Denver wage subsidies available to employers here!!</a>',
    '<a href="/associations.html">Check out our 2011 Silent Auction Sponsors here!!</a>'
    );
function cycleDiv(){
    window.mCurrentStuff = window.mCurrentStuff + 1;
    if (mCurrentStuff == mStuff.length){
        window.mCurrentStuff = 0;
    }
    var mNewHtml = mStuff[window.mCurrentStuff];
    $('#slider').hide('slide', {}, 1000);
    setTimeout('changeHtml()', 1000);
    setTimeout('showHtml()',1000);
    setTimeout('cycleDiv()', mTimeOut);
}
function changeHtml(){
    $('#slider').html(mStuff[window.mCurrentStuff]);
}
function showHtml(){
    $('#slider').show('slide', {}, 2000);
}
