// ////////////////////////////////////////////////
// EFFET ANCRES
// ////////////////////////////////////////////////
$(document).ready(function() {

  if ($('a[href*=#]').length) {
    $('a[href*=#]').click(function() {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
      $('html,body').animate({ scrollTop: $target.offset().top },1000);
      return false;
    })
  }
});

function adjustRatio(img){
	if($('body').height() < img.height()) {
        img.height('100%');
        img.width('auto');
    }

    if($('body').width() > img.width()){
        img.width('100%');
        img.height('auto');
    }
}

$(document).ready(function(){
	$(window).resize(function(){
  		adjustRatio($('#bg'));
	});
})

$(window).load(function(){
	$('#bg').css("visibility", "visible"); 
  adjustRatio($('#bg'));
});