/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(window).load( function() {
    $('table').attr('cellspacing','1')
    $('a#secondaire').click( function() {
        $('ul.superieur').css('display','none');
        $('ul.secondaire').slideToggle(600);
    });
    $('a#superieur').click( function() {
        $('ul.secondaire').css('display','none');
        $('ul.superieur').slideToggle(600);
    });
    $( "#birthday" ).datepicker({
        dateFormat: 'yy-mm-dd',
        changeMonth: true,
        changeYear: true,
        showOtherMonths: true,
        selectOtherMonths: true
    });
});



