$(function(){
	initRndAds();
});

function initRndAds(){
	var hold = $('#wrapper .pl-comment > div');
	var link = hold.parent().find('a.re');
	var texts;
	$.ajax({
		url:'http://mmgp.ru/plugins/spoiler/texts_new.html',
		type:'POST',
		success:function(msg){
			texts = $(msg).children();
			rnd(hold, texts);
			link.click(function(){
				rnd(hold, texts);
				return false;
			});
		},
		error:function(){
			;
		}
	});
}
function rnd(hold, div){
	var count = div.length-1;
	window.adsActive = Math.floor(Math.random()*count); 
	hold.empty().append(div.eq(window.adsActive)).children().show();
}

