 $(document).ready(function() {
  $("#sponsors-carousel").jcarousel({
    vertical: true
  });
  $("#speakers-carousel").jcarousel({
    scroll: 4
  });
  $("#ulmenu > ul").addClass('sf-menu').addClass('sf-vertical');
  $("ul.sf-menu").superfish({ 
    animation: { height:'show' },   // slide-down effect without fade-in 
    delay: 1200                     // 1.2 second delay on mouseout 
  });

  var pairBlockHeights = new Array();
  var pairBlockMaxHeight = 0;

  $('.days .day').each(function(index){
	pairBlockHeights[index] = $(this).height();
	if (pairBlockHeights[index] > pairBlockMaxHeight) {
	  pairBlockMaxHeight = pairBlockHeights[index];
	}
  }).css('height', pairBlockMaxHeight);

});
