var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var downame=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var menuArray = new Array(
	"Return to Homepage","index.htm",
	"The Pastor's Message For You","PastorsMessage.htm",
	"About Reed's Temple","AboutUs.html",
	"Adult & Youth Choirs","Choir.htm",
	"Order Of Services","OrderOfServices.htm",
	"Schedule for 2006","Schedule.htm",
//	"What We Believe","WeBelieve.htm",
//	"Learn About Our Pastor","AboutPastor.htm",
//	"The History of Reeds Temple","RtcHistory.htm",
	"The King James Bible","Bible.htm",
	"Speaking Audio Bible","SpeakingBible.htm",
//	"Daily Wisdom","DailyWisdom.htm",
//	"Community Message Board","MessageBoard.html"
	"Shop At Reed's Temple Store","MivaOrder.htm",
	"In Memory Of Our First Lady","SisterReed.htm",
	"Contact Us","ContactUs.html"
);
var menuLength = menuArray.length;

function displayBanner()
{
	document.writeln('<table cellspacing=0 cellpadding=0 width=1004>');
	document.writeln('<tr>');
	document.writeln('<td background="images2005/banner1-s1.JPG" width=100% height=80>');
	document.writeln('<br>&nbsp;<br>&nbsp;');
	document.writeln('<font face="Times" size=4 color=white><b><a href="index.htm" class="homepg">REED' + "'" + 'S TEMPLE CHURCH</a></b></font>');
	document.writeln('</tr>');
	document.writeln('<tr><td bgcolor=brown width=100% height=20>');
	document.writeln('</tr>');
	document.writeln('</table>');
}

function displayMenuPage(currentPage)
{
	var idx,displayed=0;
	var date = new Date();
	var month;
	var day;
	var name;

	month = date.getMonth() + 1;
	day = date.getDate();
	year = date.getYear();
	if (month<10)
	{
		month = "0" + month;
	}
	if (day<10)
	{
		day = "0" + day;
	}
	address = "http://dailywisdom.gospelcom.net/archives/" + year + "/" + month + "/" + day + "/index.html";

	document.writeln('<center>');
	document.writeln('<img src="./images2005/welcome_to1.JPG">');

	document.writeln('<table cellspacing=0 cellpadding=0 width=190 border=0>');
	for (idx=0;idx<menuArray.length;idx+=2)
	{
		document.writeln('<tr>');
		document.writeln('<td class="pt14">');
		
		displayed = 1;
		txt = menuArray[idx];
		if (menuArray[idx+1]=="DailyWisdom.htm")
		{
			document.writeln('<img src="./images2005/tag.JPG">');
			document.writeln('<a href="' + address + '" class="mylink" target="_blank">&nbsp;' + txt + '</a>');
		}
		else if (menuArray[idx+1]==currentPage)
		{
			if (idx==0) txt = "Homepage";
			document.writeln('<img src="./images2005/tag_on.JPG">');
			document.writeln('<a href="' + menuArray[idx+1] + '" class="mytext">&nbsp;' + txt + '</a>');
		}
		else
		{
			document.writeln('<img src="./images2005/tag.JPG">');
			document.writeln('<a href="' + menuArray[idx+1] + '" class="mylink">&nbsp;' + txt + '</a>');
		}
		document.writeln('</td>');
		document.writeln('</tr>');
	}
	document.writeln('</table>');

	document.writeln('<div class="pt12">');
	document.writeln('<b><br>219-972-0441 <img src="images2005/tag.JPG">&nbsp;866-771-7556</b>');
//	document.writeln('<br>Email: <a href="mailto:pastor@reedstemple.com" target="_blank" class="pt12"><font color=black><b>pastor@reedstemple.com</b></font></a>');
//	document.writeln('<br><a href="mailto:webmaster@reedstemple.com" target="_blank" class="pt12"><font color=black><b>webmaster@reedstemple.com</b></font></a>');
	document.writeln('<br>Overseer Joe B. Reed, Founder');
	document.writeln('<br>Elder David A. Reed, Pastor');
	//document.writeln('<br>Send Feedback to: <b><a href="mailto:webmaster@reedstemple.com" target="_blank"><font color=black>webmaster@reedstemple.com</font></a></b>');

	document.writeln('</div>');

	document.writeln('</center>');
}

function displayDate()
{
	var date = new Date();
	var month;
	var day;
	var name;

	todaymonth = date.getMonth();
	todayday = date.getDate();
	todayyear = date.getYear();
	todaydow = date.getDay();

	document.write("<b>" + downame[todaydow] + "</b><br>");
	document.write("<b>" + monthname[todaymonth] + " " + todayday + ", " + todayyear + "</b>");
}

var timer_id;
function scroll_iframe(frm,inc,dir) {
  alert('hey');
  if (timer_id) clearTimeout(timer_id);
  if (window.frames[frm]) {
    if (dir == "v") window.frames[frm].scrollBy(0, inc);
    else window.frames[frm].scrollBy(inc, 0);
    timer_id = setTimeout("scroll_iframe('" + frm + "'," + inc + ",'" + dir + "')", 200);
  }
}

function stopScroll() { if (timer_id) clearTimeout(timer_id); }

function displayScrolls()
{
	document.writeln('<div class="arrows" align="center">');

//	document.writeln(' 	<a href="#" onmouseover="scroll_iframe(' + '"scr1", -4, ' + '"v"); window.status=' + '"Hover here to scroll up."; return true' + '" onmouseout="stopScroll(); window.status=' + '""; return true"><img src="./images/up.gif" width="12" height="12" alt="" border="0"></a>');

//  	document.writeln('  <a href="#" onmouseover="scroll_iframe(' + '"scr1",  4, ' + '"v"); window.status=' + '"Hover here to scroll down."; return true' + '" onmouseout="stopScroll(); window.status=' + '""; return true"><img src="./images/down.gif" width="12" height="12" alt="" border="0"></a>');
	document.writeln('</div>');
}

function displayServices()
{
	document.writeln('<table cellspacing=0 cellpadding=0 width=175 height=175>');
	document.writeln('<tr>');
	document.writeln('<td background="./images2005/rtc_sign_175x175.JPG" width=175 height=175 class="pt24">');
	document.writeln('&nbsp;');
	document.writeln('<br>&nbsp;');
	document.writeln('<br>&nbsp;');
	//document.writeln('<br>&nbsp;');
	document.writeln('<br><center><font color=white face="times">');
	displayDate();
	document.writeln('</font></center>');
	document.writeln('</td></tr>');
	document.writeln('</table>');
	document.writeln('<table cellspacing=0 cellpadding=0 width=175>');
	document.writeln('<tr>');
	document.writeln('<td valign=top class="pt12">');
	document.writeln('<center>');
	document.writeln('<font face="tahoma"><b>VIEW OUR SERVICES</b></font>');
	//document.writeln('<br><font face=tahoma size=1><i>All services available on DVD</i></font>');
	document.writeln('<iframe name="scr1" id="scr1" src="videos.htm" width=150 height=220 frameborder="0">Sorry, your browser doesnt support iframes.</iframe>');
	document.writeln('<img src="./images/spacer.gif" height="8"><br>');
	document.writeln('</center>');
	document.writeln('</td>');
	document.writeln('</tr>');
	document.writeln('</table>');
}

function displayAddress()
{
	document.writeln('<center>');
	document.writeln('<table height=10>');
	document.writeln('<tr>');
	document.writeln('<td width=60><td>');
	document.writeln('<td class="pt12">');
	document.writeln('<center>');
	document.writeln('<hr width=580>');
	document.writeln('<font face=arial color="brown">');
	document.writeln('<b><i>1300 North Broad, Griffith Indiana, 46319</i></b>');
	document.writeln('</font>');
	document.writeln('</center>');
	document.writeln('</td>');
	document.writeln('</tr>');
	document.writeln('</table>');
	document.writeln('</center>');
}
