$(document).ready(function(){

	$("#navi_guide a.theme").click( function(a) {

    $("#navi_guide ul li ul").each(function(i){
      if (this.style.display != 'none')
        $(this).slideUp('slow');
		 }
    );
    $(this).next().slideDown('slow');
		return false;

	});

	// applique un arrondi de 10px à toutes les div ayant une classe rounded
	$("div .rounded").each(function(i){$(this).corner("10px");});

	// ajoute un <div class="bottom"></div> à la div id = alaune
	$("#alaune").after('<div id="alaune_bottom">&nbsp;</div>');



});