//* setup the fading banner promotions. using jquery cycle

//* setup the fading banner promotions.
$(function() {
    $('#large_promo2').after('<div id="promoNav" class="nav">').cycle({
        fx:       'fade',
        speed:    600,
    	timeout:  5000,
        pager:    '#promoNav'
    });
});

//* reveal the banner images after cycle has loaded.
$(function() {
	$('.pics').css({
		"opacity":   1
	});
});
