$(document).ready(function(){

  $('#header div.bubble h3').click(function() {
    $(this).siblings("#bubble-toggle").toggleClass("active");
    $(this).siblings(".panel").slideToggle();
  });

  $('#header #bubble-close').click(function() {
    $(this).parent(".panel").parent("#bubble-toggle").toggleClass("active");
    $(this).parent(".panel").slideToggle();
  });

  $('#banner-cycle ul').cycle();

  $('.cctv #container .logos').cycle({
    fx:    'zoom', 
    sync:  false, 
    delay: -2000
  });

});
