$(document).ready(function(){
	// Logo CNES pour IE6
	if($.browser.msie && $.browser.version <= 6) 
	{ 
		$('#container').before('<img src="/img/blank.gif" style="position:absolute;z-index=-1;padding-left:15px" class="img_png" />');
	}

	// Champ de recherche
        $('#q').focus(function(event) {
			if ($('#q').val() == "Votre recherche") {
				$('#q').attr("value", "");
			}
        });
		
		$('#q').blur(function(event) {
			if ($('#q').val() == "") {
				$('#q').attr("value", "Votre recherche");
			}
        });

        var gEffectDuration = 180; /*millisecondes*/



        /*navigation of accordion 'menu'*/
        function manageMenuAccordion(e){
                var eBrother = e.parent().children("div[@class^='navSubContent']");

                if(eBrother.css("display") == "none"){
                        eBrother.slideDown(gEffectDuration);
                        eBrother.parent().children(0).children(1).children(0).children("a[class='action']").html('-');
			// Cartouche foncé
			eBrother.parent().children(0).children("div[class='top']").attr("class", "topOpened");
			eBrother.parent().children(0).children("div[class='tile']").children("div[class='content']").children("h2").children("a").attr("class", "white");
			eBrother.parent().children(0).children("div[class='tile']").attr("class", "tileOpened");
			eBrother.parent().children(0).children("div[class='bottom']").attr("class", "bottomOpened");
						
				} else {
                        eBrother.slideUp(gEffectDuration);
                        eBrother.parent().children(0).children(1).children(0).children("a[class='action']").html('+');
			// Cartouche clair
			eBrother.parent().children(0).children("div[class='topOpened']").attr("class", "top");
			eBrother.parent().children(0).children("div[class='tileOpened']").children("div[class='content']").children("h2").children("a").attr("class", "");
                        eBrother.parent().children(0).children("div[class='tileOpened']").attr("class", "tile");
                        eBrother.parent().children(0).children("div[class='bottomOpened']").attr("class", "bottom");
				}

        }

        /*management of accordion 'fixe' */
        if($("div[class='jeunesArborescence']")){
                /*init : set visible '+' link*/
                $("div[class='blocGlobal jeunesArborescence'] div[class='navSubTitre']").each(function (){
                        var eA= $(this).children(1).children(0).children("a[class='action']");
                        eA.css({display: "block"});
                });
                /*events*/
                /*disable direct links*/
                $("div[class='blocGlobal jeunesArborescence'] div[class='navSubTitre'] a[class='action']").click(function(){
                        $(this).blur();
                        manageMenuAccordion ($(this).parent().parent().parent());
                        return false;
                });
        }
		
		// Gestion de l'aide dans les rangées
        $("div [class='helpRowTitle']").click(function() {
                 var gEffectDuration = 180;
                if ($(this).parent().children("div[class='helpRowDetail']").css("display") == "none")
                {
                        $(this).parent().children("div[class='helpRowDetail']").slideDown(gEffectDuration);
                        $(this).html("Masquer l'aide pour cette rang&eacute;e...");
                }
                else
                {
                        $(this).parent().children("div[class='helpRowDetail']").slideUp(gEffectDuration);
                        $(this).html("Afficher l'aide pour cette rang&eacute;e...");
                }
        });
});
