if (myDomReady!=null) {
	myDomReady (function () {
		if(DropDownMenu && $('menu_top')) {
		 var menu = new DropDownMenu($('menu_top'));
		}
		
		$$('table.texte_03 tr').each (function (el) {
			el.addEvent ('mouseover', function () {
				$$('#'+this.id+' a.texte_03').each (function (c){
					c.addClass ('texte_03_on');
				});
			});
			el.addEvent ('mouseout', function () {
				$$('#'+this.id+' a.texte_03').each (function (c){
					c.removeClass ('texte_03_on');
				});
			});
		});

		$$('ul.elem').each(function(el){el.makeRounded('bottom', {radius: 7});});
		
	});
}

