		jQuery.jQueryRandom = 0;
		jQuery.extend(jQuery.expr[":"],
		{
			random: function(a, i, m, r) {
				if (i == 0) {
					jQuery.jQueryRandom = Math.floor(Math.random() * r.length);
				};
				return i == jQuery.jQueryRandom;
			}
		});
		$(document).ready(function(){
			$("#boxFaq p.question:random").show();
		});

