$(document).ready(function(){
	$('img.headerafb:eq('+ $.random(0, ($('img.headerafb').length - 1)) +')').show();
});

jQuery.extend({
	random: function(min, max) {
	  return Math.round(min + ((max - min)*(Math.random() % 1)));
	}
});
