 $.noConflict();
  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
 
  function equalHeight(group) {
   tallest = 0;
   group.each(function() {
      thisHeight = $(this).height();
      if(thisHeight > tallest) {
         tallest = thisHeight;
      }
   });
   group.height(tallest);
}

$(document).ready(function() {
  $(window).load(function() {
   equalHeight($("div.equal-height"));
}); 
  
    $('.carousel').cycle({
    fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
 pager:  '.carousel-nav' ,
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '.carousel-nav li:eq(' + idx + ') a'; 
    } 
  });
  
 /* $(".video-box").fancybox({
     'width'        :720,
     'height'      :405,
    // 'padding'      : 0,
     'autoScale'      : false,
       
    'type'        : 'iframe'
    //   'modal'     : 'true'
  });*/
  
  //Dropdown menu
 /*  $('.global-nav ul li ul').hide(); // hide all menus, should be set in CSS in production
$('.global-nav > ul > li').hover( // show specific child UL
	function() {
    $(this).children('ul').toggle();
},
function() { // hide ul
 $(this).children('ul').toggle();
}); */
  
});
 });

