jQuery(document).ready(function($){


        jQuery(document).mousemove(mouseMoved);

        function mouseMoved()
        {
               $("#Form_ContactForm_Spam").val("noSpam"); 
               jQuery(window).unbind('mousemove', mouseMoved);         
          
          
        }

        window.setInterval(swapIntro, 7000);
        function swapIntro()
        {
               var active =  $(".swap.active").removeClass("active").fadeOut(450).next(".swap").addClass("active").fadeIn(500); 
               if(active.length == 0)
               {
                  $(".swap:first").addClass("active").fadeIn(500) ;
               }
                 
                         
        }              


});

