document.observe("dom:loaded", function() {
	// initially hide all info texts
	var infoTexts = $$('#customer_container ul.customers .info'); 
	infoTexts.invoke('hide');
	
	// when clicking a customer name, show its info text
	var englishTagged = $$('div.feeds>.inner>ul>li>div>.language.en');
	englishTagged.each(function(item) {
			item.hide();
	});		
});