$(window).load(function() {

  if ($.browser.msie) {
    $('.content').each(function(){
      $(this).after('<div class="ie-shadow" style="width: '+$(this).width()+'px; height: '+$(this).height()+'px; left: '+($(this).offset().left+15)+'px; top: '+($(this).offset().top+15)+'px;"></div>');
    });
    $('#main').css('height',($(document).height()-400)+'px');
  }
  

  //Homepage equalise container height
  var currentProductionHeight = $('.current-production-pic').height();
  $('.current-production-text').height(currentProductionHeight);


  //Events calendar hover
  $("table.sm_calendar td").hover(function(){
    $(this).children("div.events_today").fadeIn("fast");
  },function(){
    $(this).children("div.events_today").fadeOut("fast");
  });


  //Archived events lightbox
  $("a.gallery").colorbox();
  
  
  //Homepage banner pics
  $('#pics').cycle();
  
});
