  /*$(function(){
    $('.swapImg').cycle({ 
    fx:     'fade', 
    speed:   1500, 
    timeout: 6000,  
    pause:   0 
}); 
  }); */
  
    $(function(){
    $('.swapImg').cycle({ 
    speed:   5, 
    timeout: 6000,  
    pause:   0 
}); 
  });
  $(document).ready(function() {
 $('.block-encart, #site').show(); 
 function imageresize() {
 if ( $.browser.msie ) {
  $('#home-container').css('height',$(window).height()-200);
  $('#site .swapImg a').children('.bck').css('width', $(window).width());
    $('.block-encart').css('width', $('.block-encart a').children('.encart').width()); 
  $('.block-encart a').children('.encart').css('width', $(window).width() / 4.5652);
  //$('.block-encart').css('width', $(window).width() / 4.5652).css('padding-right', $(window).width() / 560);
  //$('.encart').css('padding-bottom', $(window).width() / 560 );
  $('.block-encart').css('height', $('#home-container').height());
  $('.block-encart a').children('.encart').css('width', $('.block-encart').height()/1.972);
    
  }else{ 
  $('#home-container').css('height',$(window).height()-200);
  $('#site .swapImg a').children('.bck').css('width', $(window).width());
  $('.block-encart a').children('.encart').css('width', $(window).width() / 4.5652);
  //$('.block-encart').css('width', $(window).width() / 4.5652).css('padding-right', $(window).width() / 560);
  //$('.encart').css('padding-bottom', $(window).width() / 560 );
  $('.block-encart').css('height', $('#home-container').height());
  $('.block-encart a').children('.encart').css('width', $('.block-encart').height()/1.912);
  $('.block-encart').css('width', $('.block-encart a').children('.encart').width());  
 } 
 }
 
 imageresize();//Triggers when document first loads    
 $(window).bind("resize", function(){//Adjusts image when browser resized
    imageresize();
 });
 });
