jQuery(function() {
	jQuery.fn.showRandom = function() {
		this.hide(); // You should really hide these using css to prevent flicker, but this will save your ass if you forget.
		var random = Math.floor(Math.random()*this.length);
		this.eq(random).fadeIn("fast");				
	};
});
