window.onload=function()
{
timer_testimonials();
timer_faq();
timer1_webinar();
}

function timer_testimonials()
{
var t=setInterval("refresh_testimonials()",9000);
}

function refresh_testimonials()
{
ajaxpage('testimonial_feed.php', 'feedbackfeed') //load "testimonial_feed.php" into "feedbackfeed" DIV
}


function timer_faq()
{
var t=setInterval("refresh_faq()",6000);
}

function refresh_faq()
{
ajaxpage('faq_feed.php', 'flashbox1') //load "faq_feed.php" into "flashbox1" DIV
}


function timer1_webinar()
{
var t=setTimeout("timer2_webinar()",6000);
var t=setInterval("refresh2_webinar()",12000);
}

function timer2_webinar()
{
var t=setInterval("refresh1_webinar()",12000);
}

function refresh1_webinar()
{
ajaxpage('webinar_feed.php', 'flashbox2') //load "webinar_feed.php" into "flashbox2" DIV
}

function refresh2_webinar()
{
ajaxpage('webinar_feed2.php', 'flashbox2') //load "webinar_feed2.php" into "flashbox2" DIV
}

