// Function showing a slideshow of screens within the monitor
$(function(){
    $('#header div:gt(0)').hide();
    setInterval(function(){
      $('#header :first-child').fadeOut(500)
         .next('div').fadeIn(500)
         .end().appendTo('#header');}, 
      3000);
});

$(function(){
    $('#testimonials div:gt(0)').hide();
    setInterval(function(){
      $('#testimonials :first-child').fadeOut(500)
         .next('div').fadeIn(500)
         .end().appendTo('#testimonials');}, 
      5000);
});

$(function(){
   $('.zoom1').click(function(){ $(this).colorbox({ href: '#zoom1-news', inline:true, width: "748px"}); });
   $('.zoom2').click(function(){ $(this).colorbox({ href: '#zoom2-news', inline:true, width: "629px"}); });
   $('.zoom3').click(function(){ $(this).colorbox({ href: '#zoom3-news', inline:true, width: "404px"}); });
   $('.zoom4').click(function(){ $(this).colorbox({ href: '#zoom4-news', inline:true, width: "439px"}); });
});
