// Frontline Animated Roch 
//
// Wirtten by Erik Teichmann
// www.erikteichmann.com
//
// Copyright 2012 Netwirks LLC.
// www.netwirks.com
//

    function swapImages(){
      var $active = $('#roach .active');
      var $next = ($('#roach .active').next().length > 0) ? $('#roach .active').next() : $('#roach img:first');
      $active.removeClass('active');
      $next.addClass('active');
    }

    function roachWalk(){
			$('#roach').animate({
				left: "90%",
				bottom: "+=100%"
				}, 5000,function() {$('#roach').animate({
				left: "-150px",
				bottom: "0"
				}, 0)
				})
	}
	
	
    $(document).ready(function(){
	  setTimeout('roachWalk()', 1500);
      setInterval('swapImages()', 80);
      setInterval('roachWalk()', 20000);
	  });
