$(document).ready(function(){
   
   $(".homePics a").fancybox();
   
   $(".homeVideos a").fancybox({
       width: 640,
        type: 'iframe'
   });
   
    //videowall home
   
   var iImg = 0;
   
   setInterval( function(){
       
       $(".featured").eq(iImg).fadeOut("fast",function(){
           
           iImg++;
       
       if(iImg == $(".featured").length){
           iImg = 0;
       }
       
       $(".featured").eq(iImg).fadeIn();
       });
       
       
       
   },7000);
   
   $(".menu-header li").hover(function(){
       
       $(this).children(".sub-menu").slideDown();
       
   },function(){
       $(this).children(".sub-menu").slideUp();
   });
   
   $(".listImages li img").hover(function(){
      
      $(this).width(70);
      $(this).height(45);
      
   },function(){
      
      $(this).width(59);
      $(this).height(40);
      
   });
   
});
