$(document).ready(function() {
    $(".box").colorbox({
        width:"80%",
        height:"80%",
        iframe:true
    });
        $("#lnkPro,#lnkProImage").colorbox({
            width:"850px",
            height:"600px",
            iframe: true
        });
    $("table.odd tr:nth-child(odd)").addClass("odd");

    $('#lnkChoisir').bind('mouseover',function(){
        $('#menuChoisir').slideDown();
    });
    $('body').bind('click',function(){
        if ($('#menuChoisir').is(':visible')) {
            $('#menuChoisir').slideUp();
        }
    });
    

}) ;


