// JavaScript Document
window.addEvent('domready', init);


function init(){

	var menu = new DropMenu('menu',{ mode:'vertical' });
	/*
		Radius settings:
			radius
			topleft
			topright
			bottomleft
			bottomright
	*/
	
	/*GoodCorners.round( $('centre_gauche'), {radius: '',bottomleft:'15px',bottomright:'15px',topright:''});
	GoodCorners.round( $('centre_droit'), {radius: '',bottomleft:'15px',bottomright:'15px',topright:''});
	*/
	$$('.submenu').getFirst().set('class' , 'menu_a premier');
	$$('.submenu').each(function(el) {
		el.getElements('li').getLast().set('class' , 'menu_a dernier');
		el.getParents('li').getElement('a').set('href','#');
	});
	
	
	
	
}









