$(document).ready(function()
{

/*main menu */  
    $('#col1 dd.rub').each(function (){
        $(this).addClass('hidden');
    });
    $('#col1 dt').each(function (){
    	$(this).click(function() 
    	{ 
    	    if($(this).parent('dl').attr('class')!='actif'){
    	        
    	    $('#col1 dd.rub').each(function (){
        	        $(this).parent('dl').children('dd.rub').slideUp('normal');
        	        $(this).parent('dl').removeClass('actif');
            });
            
    	    }  
            $(this).parent('dl').children('dd.rub').slideDown('normal');
            $(this).parent('dl').addClass('actif');    	        
    	    });
        });
        
    $('#p1').click(function (){     
        $('#header').removeClass('p2');
        $('#header').removeClass('p3');
        $('#header').addClass('p1');
        document.cookie ='header=p1';
        
    }); 
    $('#p2').click(function (){     
        $('#header').removeClass('p1');
        $('#header').removeClass('p3');
        $('#header').addClass('p2');
        document.cookie ='header=p2';
    }); 
    $('#p3').click(function (){     
        $('#header').removeClass('p1');
        $('#header').removeClass('p2');
        $('#header').addClass('p3');
        document.cookie ='header=p3';
    }); 
    
    
    if(GetCookie () == 'p1'){
        $('#header').removeClass('p2');
        $('#header').removeClass('p3');
        $('#header').addClass('p1');
    }
    if(GetCookie () == 'p2'){
        $('#header').removeClass('p1');
        $('#header').removeClass('p3');
        $('#header').addClass('p2');
    }
    if(GetCookie () == 'p3'){
        $('#header').removeClass('p1');
        $('#header').removeClass('p2');
        $('#header').addClass('p3');
    }

});

function GetCookie ()
{
    var cookValue = "" ;
    var egal= document.cookie.indexOf( "header=" ) ;
    cookValue = document.cookie.substring ( egal + 7 ) ;
    return cookValue;
}
function openImage(img, bulle, mode) {
if (!mode) mode = null;
if (!bulle) bulle="Image";
var t = document.all?'90':'55'
w=open('','image','width='+screen.width+',height='+screen.height+',toolbar=no,scrollbars=no,resizable=no'); 
w.document.write("<html><head><title>"+bulle+"</title></head>"); 
w.document.write("<body scroll=auto style='margin:0;margin-left:3px;padding:0;background:slategray' ondblclick='window.close()'");
if (mode==1) {
w.document.write("onload='resizeTo(document.images[0].width+20,document.images[0].height+"+t+");moveTo((screen.width-document.images[0].width+10)/2,(screen.height-(document.images[0].height+100))/3)'");
}
w.document.write(">");
w.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%' align=center><tr>");
w.document.write("<td valign='middle' align='center'><img src='"+img+"' border=0 style='border:1px solid silver;cursor:crosshair'>"); 
w.document.write("</td></tr></table>");


if (mode != 1) w.document.write("<div style='position:absolute;bottom:20px;right:20px;width:300px;background:url(http://www.fedre.org/images/interface/banner_bg.png);border:1px solid darkslategray;font:8pt tahoma;color:midnightblue;padding:5px;'>"+bulle+"<br><div style='width:100%;text-align:right;'><a style='text-decoration:none;color:blue' title='Fermer' href=# onclick='self.close();'>[ x ]</a></div></div>");
w.document.write("</body></html>"); 
//if (mode==1) {w.resizeTo(w.document.images[0].width+10,w.document.images[0].height+90);w.moveTo((screen.width-document.images[0].width+10)/2,(screen.height-(document.images[0].height+100))/3);}
w.document.close(); 
}

     
