<!--
/*********************************
 * author@TechSystems.com        *
 * http://www.portaldepot.net    *
 * management@portaldepot.net    *
 * (c)TechSystems.com 2005       *
 * All Rights Reserved.          *
 *********************************
 */

//Change your initial tabBGcolor to your document background color.
var tabBGcolor = "#d9d9d9"; 

//Change your tab background color here.
var thBGcolor = "#f9efe9"; 
 
var num=1;
var bottomBordr="1px solid #000000"


var tb = document.getElementById("tb");
var tb1 = document.getElementById("tb1");
var tb2 = document.getElementById("tb2");
var tb3 = document.getElementById("tb3");

//If you input images in your content, you have to 
//preload the images. If you call your images from a separate
//directory, you have to put in the directory var imgDir = "imageDirectory".
//If you call the images from the same directory that holds your document,
//then just leave it empty. Put your images into the array.
var imgArray = new Array("names of photos, more names");
var imgDir = "file name";
if (document.images) {
for (i=0; i<imgArray.length; i++) {
eval("imgObj" + i + "= new Image(50,30)");
eval("imgObj" + i + ".src = '" + imgDir + imgArray[i] + "'");
}
}

function tgglTabs(n2) {
num = n2;
var tb = document.getElementById("tb");
var tb1 = document.getElementById("tb1");
var tb2 = document.getElementById("tb2");
var tb3 = document.getElementById("tb3");

//Change the content "tb.innerHTML = " for each tab below.


   		
	   if (num==1){
		tb1.style.backgroundColor = tabBGcolor;
    tb1.style.borderBottom = "1px solid " +tabBGcolor;					
	  tb.innerHTML = '<ul><li>When you call or write, have your goals and dates for your trip. We will discuss activity, lodging, and meal options with you to plan your retreat. <br><br><li>Send your deposit as soon as possible. No retreat is reserved until the deposit is received. <li>When we receive your check, we will make sure everything you want is still available. <br><br><li>If any scheduling conflicts have occurred since our conversations with you, we will contact you to discuss options before processing your check.<br><br><li>If your desired retreat is available, we will send you a confirmation packet within the week. Okay, sometimes it takes us a little longer.<br><br><li>Important!!  When you receive your confirmation packet, <strong>open the packet and fill out and sign the necessary forms</strong>. Participants may not do activities if their health forms and agreement forms are not signed by the appropriate parties. If you arrive here with unsigned forms, you can go into town and make phone calls and receive faxes or we can charge you $5 per page if we need to make the calls once you get here. We suggest you bring the forms signed. :-)</ul>';

		tb2.style.backgroundColor = thBGcolor;
    tb2.style.borderBottom = bottomBordr;
		tb3.style.backgroundColor = thBGcolor;
    tb3.style.borderBottom = bottomBordr;
			
    }	


	  if (num==2){
		tb2.style.backgroundColor = tabBGcolor;
		tb2.style.borderBottom = "1px solid " + tabBGcolor;		
	  tb.innerHTML = '<ul><li>Call, write or e-mail to tell us the dates you want and the age of your group. </p> <li>We will help you decide the type of trip (backpacking, canoeing, climbing) and the location (the Ozarks, North Carolina, etc.) <br><br><li>Send your deposit.<br><Br> <li>When we receive your check, we will make sure everything you want is still available.<br><br> <li>If any scheduling conflicts have occurred since our conversations with you, we will contact you to discuss options before processing your check. <br><br><li>If your desired dates/activities/locations are still available, we will send you a confirmation packet within the week. Okay, sometimes it takes us a little longer. </ul> <p class="note">Notice: Destination states which require permits require extra time to apply for and receive permits, so keep that mind in when planning! Also, some states will not give us permits, and all permit fees are the responsibility of the contracting group.';
		tb1.style.backgroundColor = thBGcolor;
    tb1.style.borderBottom = bottomBordr;
	tb3.style.backgroundColor = thBGcolor;
    tb3.style.borderBottom = bottomBordr;
		
    }	
	
	 if (num==3){
		tb3.style.backgroundColor = tabBGcolor;
		tb3.style.borderBottom = "1px solid " + tabBGcolor;		
	  tb.innerHTML = '<p class="subtitle">General Information:</p> <p class="maintext">Discovery Ministries will help you plan your event and take reservations from the individuals and families attending the event. The organizer puts down a minimum deposit, and then the other participants send their deposits to reserve their places. We also will have a staff member give a short welcome and have a question and answer time for your group at the beginning of your event. We offer this service for a reunion or conference group of 12 or more.</p> <p class="subtitle">Your Role as the Organizer:</p> <ul><li>Call or e-mail our office to design an event with our staff that meets your goals. We will help you decide what lodging, meal, and activity options best fit your goals and budget.</li> <br><li>Send the minimum deposit needed for the number of people you expect. The minimum deposit is in increments of 12 people. If you think you will have 12-23, the minimum deposit is for 12; if you think you will have 24 to 35, the minimum deposit is for 24; etc.</li><br> <li>Forward, or print and mail, the confirmation e-mail and accompanying documents to all the members of your event.</li><br><li>If your minimum number of people uses all the facilities, meals, and activities you reserved, your entire deposit is applied to your bill at the end of the event. The deposit for any facility, meal, or activity used by fewer than your minimum number will be forfeited at our regular deposit rate.</li></ul>';
		tb1.style.backgroundColor = thBGcolor;
    tb1.style.borderBottom = bottomBordr;
		tb2.style.backgroundColor = thBGcolor;
    tb2.style.borderBottom = bottomBordr;
    }	 

}		
//-->