
	$(function(){
		//convertButtons("input.btn");
		var slogans = [];
		$("span.eslogan-box").find("p.eslogan-autor").each(function(){
			slogans.push(this);
			//$(this).hide();
		});
		var randomnumber = Math.floor(Math.random() * slogans.length);
		$(slogans[randomnumber]).show();
		$("span.eslogan-box").show();
	});