
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

// !!! MS NOTE: WHEN DONE, ADD SITE MAP

//Contents for menu 1  - About Us
var menu1=new Array()
menu1[0]='<A HREF="Mission_and_VisionV2.shtml" TITLE="Misc">&nbsp;&nbsp;&nbsp; Mission/Vision/Beliefs</A>' 
menu1[1]='<A HREF="worship_servicesV2.shtml" TITLE="Services">&nbsp;&nbsp;&nbsp; Services</A>'
menu1[2]='<a HREF="statement_of_faithV2.shtml" TITLE="Statement">&nbsp;&nbsp;&nbsp; Statement of Faith</a>'
menu1[3]='<a HREF="Bible_sayV2.shtml" TITLE="Help">&nbsp;&nbsp;&nbsp; What Bible says</a>'
menu1[4]='<A HREF="staffV2.shtml" TITLE="Staff">&nbsp;&nbsp;&nbsp; Staff</A>'
menu1[5]='<a HREF="TBC_Directions.shtml" target=" " TITLE="Directions to our church">&nbsp;&nbsp;&nbsp;	 Directions</a>'	
menu1[6]='<A HREF="historyV2.shtml" TITLE="Staff">&nbsp;&nbsp;&nbsp; History</A>'
 		
// "Staff", "Mission/Vision/.Beliefs", "History", and "Facilities".  

//Contents for menu 2, - Ministries
var menu2=new Array()
menu2[0]='<A HREF="http://www.tabernaclechristianonline.com/" target=" " TITLE="Academy">&nbsp;&nbsp;&nbsp; Academy</A>'
menu2[1]='<A HREF="childrens_ministryV2.shtml" TITLE="Children">&nbsp;&nbsp;&nbsp; Childrens Ministry</A>'
menu2[2]='<A HREF="adult_electivesV2.shtml" TITLE="Electives">&nbsp;&nbsp;&nbsp; Adult Bible Electives</A>'
menu2[3]='<a HREF="missionsAV2.shtml" TITLE="Missions">&nbsp;&nbsp;&nbsp; Missions</a>'
menu2[4]='<A HREF="student_ministriesV2.shtml" TITLE="Student Ministries">&nbsp;&nbsp;&nbsp; Student Ministries</A>'	

// menu2[4]='<A HREF="small_groupV2b.shtml" TITLE="Small groups">&nbsp;&nbsp;&nbsp; Small Groups</A>'		

var menuwidth='165px' //default menu width
var menubgcolor='lightyellow'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

// The dropdownmenu() function accepts 4 parameters as shown:
// dropdownmenu(this, event, menuarray, 'width')Only customize the last two parameters (menuarray and 'width'), where:
// 3) Menuarray- The array contents you wish the menu to display (see code of Step 1).
// 4) Width- The width of the menu (pass in "" if you simply wish to use the default menu width).
// And that's about it!
// 
// More information on customizing the menu
// Inside the code of Step 1, a few items are available for customization. Firstly, the style sheet can be used to 
// add additional visual styling to the menu, excluding default menu width and background color, which are controlled 
// by two variables within the script that follow. You can also specify the disappearance delay of the menu when 
// the mouse moves out of it.


<!-- Slide show --> 


<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5500;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'SlideA-02-09.jpg'
Pic[1] = 'SlideG-02-09.jpg'
Pic[2] = 'SlideB-02-09.jpg'
Pic[3] = 'SlideC-02-09.jpg'
Pic[4] = 'SlideD-02-09.jpg'
Pic[5] = 'SlideE-02-09.jpg'
Pic[6] = 'SlideF-02-09.jpg'
Pic[7] = 'IMG_6907_edited.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->

