
$(function(){

	$('#communityArea').find('li').hide();
	$('#communityArea').find('li').each(function(index){
		$(this).attr('class','bnr'+index);
	});
	$('#communityArea').find('li').hover(function(){
		$(this).addClass('rover');
	},function(){
		$(this).removeClass('rover');
	});
	var count = $('#communityArea').find('li').length;
	n = Math.floor(Math.random() * count);
	$('.bnr'+(n)).show();

});

