
function commonPrepare() {
  $('.header').wrapAll('<div id="header"></div>');
  $('.menu').wrapAll('<div id="menus"></div>');
  $('.bbleft').wrapAll('<div id="leftbar"></div>');
  $('.content').wrapAll('<div id="content"></div>');
  $('.actus').wrapAll('<div class="barbloc bbright"></div>');
  $('.livres').wrapAll('<div class="barbloc bbright"></div>');
  $('.bbright').wrapAll('<div id="rightbar"></div>');
  $('.footer').wrapAll('<div id="footer"></div>');
  $('h2.photos').click(function(){
    window.location.href = '/photos/';
  });
  commonResize();
}

function commonResize() {
  var w = $(window).width();
  if ($.browser.safari && (w < $(document).width()))
    w = $(document).width();
  if (w > 984) {
    $('#header, #menus, #leftbar, #footer').css('marginLeft', Math.floor((w-984)/2)+'px');
    $('#pubgg1').css({left: Math.floor((w-984)/2 + 43)+'px'});
  }
  else {
    $('#header, #menus, #leftbar, #footer').css('marginLeft', '0px');
    $('#pubgg1').css({left: '43px'});
  }
  $('#pubgg2').css('left', (parseInt($('#pub1').css('left').replace('px', ''))+253)+'px');
  var m = 1010;
  if ($('#leftbar').height() > m) m = $('#leftbar').height() - 8;
  if ($('#rightbar').height() > m) m = $('#rightbar').height() - 8;
  if ($('#content').height() < m)
    $('#content').height(m);
  $('#pubgg2').css('top', ($('#content').height() + 460 - 280)+'px');
}

function commonPrepared() {
}

function preloadImages() {
  var d = document;
  if(d.images) {
    if(!d.MM_p) d.MM_p = new Array();
    var i,j = d.MM_p.length;
    var a = preloadImages.arguments;
    for(i = 0; i < a.length; i ++)
      if (a[i].indexOf("#") != 0) {
	d.MM_p[j] = new Image;
	d.MM_p[j++].src = a[i];
      }
  }
}


