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



function init(){
	var menu = new DropMenu('menud',{ mode:'vertical' });
	
	/*
		Radius settings:
			radius
			topleft
			topright
			bottomleft
			bottomright
	*/
	//GoodCorners.round( $$('.round'), {radius: "15px",bottomleft:'',bottomright:'',topright:''});
	
	if ($('actu_defile_content') != null)
	{
		new iCarousel("actu_defile_content", {
			idPrevious: "actu_defile_previous",
			idNext: "actu_defile_next",
			idToggle: "undefined",
			item: {
				klass: "defiliment",
				size: 220
			},
			animation: {
				direction: "top",
				duration: 0,
				amount: 1
				
			}
		});
	}
}					



