// initialise menu
jQuery(document).ready(function() {
    jQuery('#header ul').superfish();

    $("a.cboxElement").colorbox({iframe : true, width : 630, height : 370, close : "Fermer"});

    resize_content();
});
$(window).resize(function(){
    resize_content();
});

function resize_content() {
    var w = $( window );
    var W = w.width();
    if (W < 980) W = 980;
    $('#bg_header').width(W);
}
