jQuery.noConflict();
jQuery(document).ready(function($) {
	i = 0;
	j = 0;
	displayed = 0;
	
	$(".sidebarPromo img").each(function(index){
		i = ++index;
		$(this).css("display", "none");
	});
	
	prob = 1 / i;
	
	$(".sidebarPromo img").each(function(index){
		j++;
		
		if (j > (i - 1 + displayed)){
			$(this).css("display", "");	
			displayed++;
		}else if (Math.random() < prob && displayed < 1){
			$(this).css("display", "");	
			displayed++;
		}

		//alert(i - displayed);
	});
	
	labelText = $(".field-label").html();
	if(labelText){
		labelText = labelText.replace(":", "");
		//$(".field-label").html(labelText);
	}
});
