Auto Load on Timed Delay

Auto Load on Timed Delay

I have a div that has 4 buttons and another div inside that the four buttons load pages into depending on which one is clicked. Picture an image gallery except for images its loading pages. All good, all works.

What I want to do is trigger the buttons to activate every five few seconds and load the pages on their own without the button having to be clicked on.

basically creating a rotating type banner ad system.

Below is the code for one of the buttons.

  1. $("#load4").click(function() {
  2.      
  3.       $("#bigimagewrapper").load("../includes/homeimages/4.php");
         

  4.  });