$(document).ready(function(){
	rand = Math.floor(Math.random() * ($('div#content div').length));
	$('div#content div').each(function(i){
		if(i == rand)
			$(this).attr('style','display:block;')
		else
			$(this).attr('style','display:none;')
	});
});
