// JavaScript Document

var start_date, curr_date, elapsed_milliseconds, milliseconds_day, three_days, twenty_days, factor, video, thumb, popup;
thumb = new Array();
popup = new Array();
thumb[0] = "th_video_rotator_fr_ken_pond.jpg";
thumb[1] = "th_video_rotator_br_joe_silence.jpg";
thumb[2] = "th_video_rotator_dick_and_dottie.jpg";
thumb[3] = "th_video_rotator_fr_jerry_one_day_reflection.jpg";
thumb[4] = "th_video_rotator_fr_ken_entrance.jpg";
thumb[5] = "th_video_rotator_fr_jerry_retreat.jpg";
thumb[6] = "th_video_rotator_fr_jerry_explains.jpg";
thumb[7] = "th_video_rotator_rose_ann_reflection.jpg";
thumb[8] = "th_video_rotator_fr_john_why_people_come.jpg";
thumb[9] = "th_video_rotator_fred_programming.jpg";
thumb[10] = "th_video_rotator_james_food.jpg";
thumb[11] = "th_video_rotator_katie_rooms.jpg";
thumb[12] = "th_video_rotator_diane_retreatant.jpg";
thumb[13] = "th_video_rotator_lori_retreatant.jpg";
thumb[14] = "th_video_rotator_fr_ken_front_door.jpg";
thumb[15] = "th_video_rotator_marlene_retreatant.jpg";
thumb[16] = "th_video_rotator_nicolette_retreatant.jpg";
thumb[17] = "th_video_rotator_sue_retreatant.jpg";
thumb[18] = "th_video_rotator_sr_mary_agnes.jpg";
thumb[19] = "th_video_rotator_meet_rose_ann.jpg";

popup[0] = "video-wmv-fr-ken-pond.html";
popup[1] = "video-wmv-br-joe-silence.html";
popup[2] = "video-wmv-dick-and-dottie.html";
popup[3] = "video-wmv-fr-jerry-one-day-reflection.html";
popup[4] = "video-wmv-fr-ken-entrance.html";
popup[5] = "video-wmv-fr-jerry-retreat.html";
popup[6] = "video-wmv-fr-jerry-explains.html";
popup[7] = "video-wmv-rose-ann-reflection.html";
popup[8] = "video-wmv-fr-john-why-people-come.html";
popup[9] = "video-wmv-fred-programming.html";
popup[10] = "video-wmv-james-food.html";
popup[11] = "video-wmv-katie-rooms.html";
popup[12] = "video-wmv-diane-retreatant.html";
popup[13] = "video-wmv-lori-retreatant.html";
popup[14] = "video-wmv-fr-ken-front-door.html";
popup[15] = "video-wmv-marlene-retreatant.html";
popup[16] = "video-wmv-nicolette-retreatant.html";
popup[17] = "video-wmv-sue-retreatant.html";
popup[18] = "video-wmv-sr-mary-agnes.html";
popup[19] = "video-wmv-meet-rose-ann.html";

milliseconds_day = 86400000;
start_date = new Date('November 10, 2010 00:00:00');
curr_date = new Date();

elapsed_milliseconds = curr_date.getTime() - start_date.getTime();
elapsed_days = Math.floor(elapsed_milliseconds / milliseconds_day);

three_days = Math.floor(elapsed_days / 3);

if(three_days >= 20)
{

	factor = Math.floor(three_days / 20);
	video = three_days - (20 * factor);

}
else
{

	video = three_days;

}
