var current_ad = 0;
var box_ads = new Array(
    "<a href='/products-page-2'><img class='alignright size-full wp-image-307' title='upk9-ad-box_hat-ad' alt='upk9-ad-box_hat-ad' "
        + "src='http://unleashedpotential.ca/wp-content/uploads/2009/06/upk9-ad-box_hat-ad.jpg'  width='211' height='229' /></a>",

    "<a href='/scent-logix'><img class='alignright size-full wp-image-307' title='upk9-ad-box_scentlogix' alt='upk9-ad-box_scentlogix' "
        + "src='http://unleashedpotential.ca/wp-content/themes/upk9/images/upk9-ad-box_scentlogix.jpg'  width='211' height='229' /></a>"
);


function rotate_ad() {

    current_ad += 1;
    if ( current_ad == box_ads.length ) { current_ad = 0; }

    $('#right_ad').fadeOut('slow', function() { 
        $('#right_ad').html( box_ads[current_ad] );
        $('#right_ad').fadeIn('slow');
    } );

    setTimeout("rotate_ad()", 10000);

}


$(document).ready( function() { setTimeout("rotate_ad()", 10000); } );
