$(document).ready(function(){
	// set the click listener
	$('#tagCloud a').bind('click',function(e) {
		// remove all selected classes
		$('#tagCloud a').removeClass('selected');
		
		$('#tripleColumn').ajaxSection('titles matching "'+$(this).html()+'"','tag',2,'id='+$(this).html());
		$(this).addClass('selected');
	});
	
	// select one tag at random
	$('a:random', $('#tagCloud')).trigger('click');
});


