window.addEvent('domready', function(){
	var some = $$('#random li').length-1;
	var random = $random(0,some);
	// active display + title
	$$('#random li').each(function(item,index){
		if (index != random) item.style.display = "none"; // oldschool
		item.getElement('a').setProperty('title', item.getElement('img').getProperty('alt'));
	});
});