$(document).ready(function() {
    if($("#textIncentivesPromo"))
	{
		//choose random quote
		var totalQuotes = 11;
		ranNum = Math.floor ( Math.random ( ) * totalQuotes + 1 );
		$("#textIncentivesPromo").css("background-image","url(images/promos/incentives/text-incentive-" + ranNum + ".gif)");
	}
	
	if($("#textIncentivesPromo2"))
	{
		//choose random quote
		var totalQuotes = 11;
		ranNum = Math.floor ( Math.random ( ) * totalQuotes + 1 );
		$("#textIncentivesPromo2").css("background-image","url(images/promos/incentives/text-incentive-" + ranNum + ".gif)");
	}
	
	if ($(".inactive").length != 0) {

			$(".inactive").find("h3").fadeTo(0, 0.4);
			$(".inactive").find(".promoSmallInner").fadeTo(0, 0.4);
			$(".inactive").find(".ridePromoSmallRight").fadeTo(0, 0.4);
			$(".inactive").find(".promoLargeInner").fadeTo(0, 0.4);
			$(".inactive").find(".promo_actions_large").fadeTo(0, 0.4);

	}
	
	
});
