Hi all,
Here I have a funtion
function photoLoop() {
fade1L('3000');fade1M('3500');fade1R('4000');show2L('3000');show2M('3500');show2R('4000');
}
When the page loads this function is called <body onload="photoLoop();>
At this point these functions are run until it reaches the end i.e show2R('4000');
My problem is I want it to now go back to fade1L('3000'); and start over.
How can this be done, with out crashing I.E ?!