// workaround for menu generated by TYPO3 that doesnt have submenu translated
$(document).ready(function() {
	// remove submenu arrow from all top level menu items
	$('.sub').each(function() {
		$(this).attr('class','');
	}); 
	
	// add submenu arrow to all top level menu items that have a submenu
	$('.level2').each(function() {
		$(this).prev().attr('class','sub');
	});
});