//JavaScript
//Javascript code for menu button rollover/rollout
//and preload of images
//and makes menus on home.htm appear
function Do_BG()
{
var scr_height = screen.availHeight;
window.resizeTo( 800, scr_height );
}
if( document.images )
{
var whoweare_btn = PreLoad( 'wwa' ); //pre-loading all the images, so they don't have to load
var resources_btn = PreLoad( 'res' ); //when the user actually places the mouse over them,
var prayer_btn = PreLoad( 'prayer' ); //by loading them into a var for each one
var travel_btn = PreLoad( 'travel' );
var media_btn = PreLoad( 'media' );
}
function PreLoad( btn )
{
var img_path = "graphics/buttons/"; //file path to find button images
var temp = new Array();
temp[ 0 ] = new Image(); //don't know which image we're actually loading
temp[ 1 ] = new Image(); //so format temp to hold an image, any image
//then we can use .src to load each button img
temp[ 0 ].src = img_path + "home_" + btn + "_btn1.gif"; //first version: no mouse over image
temp[ 1 ].src = img_path + "home_" + btn + "_btn2.gif"; //second version: mouse over image
return temp;
}
function Swap( btn, mouse_on ) //reads img name from page and which version of the img
{
var btn_name = ( "menu_" + btn ); //(mouse_on) then inserts correct one
if( document.images )
{
var temp = eval( btn + "_btn" );
document[ btn_name ].src = temp[ mouse_on ].src;
}
}
function Menu( menu )
{
var menu_div = document.getElementById( "contents" );
var whoweare = "WHO WE ARE
"+
"=> introduction
"+
"=> contact info
"+
"=> tax exempt status
"+
"=> purpose statement
"+
"=> mission statement
"+
"=> core values
"+
"=> statement of faith
"+
"=> board & advisors
"+
"=> vision for ministry
"+
"=> goals and objectives
"+
"=> how can you partner?
"+
"=> child protection policy";
var resources = "RESOURCES
"+
"=> articles
"+
"=> books & other info
"+
"=> on leadership
"+
"=> teaching outlines
"+
"=> tools for ministry
"+
"=> tools for personal
"+
"=> links";
var prayer = "PRAYER REQUESTS
"+
"=> carter's min. calender
"+
"=> e-mail updates
"+
"=> prayer letter";
var travel = "MISSION & TRAVEL
"+
"=> carter's min. calender
"+
"=> short term opp's
"+
"=> information on europe";
var media = "PHOTOS / VIDEOS
"+
"=> photo albums
"+
"=> videos";
var opening_message = "Welcome to the Discipling the Nations website!
"+
"
"+
"Please take some time to browse around the site, using the"+
" links to the left!";
if( menu == 'body' )
{
menu_div.innerHTML = opening_message;
menu_div.style.background = "#000000";
menu_div.style.width = "160px";
menu_div.style.height = "128px";
}
else
{
if( menu == "whoweare" )
{
menu_div.innerHTML = whoweare;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "208px";
}
if( menu == "resources" )
{
menu_div.innerHTML = resources;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "125px";
}
if( menu == "prayer" )
{
menu_div.innerHTML = prayer;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
if( menu == "travel" )
{
menu_div.innerHTML = travel;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
if( menu == "media" )
{
menu_div.innerHTML = media;
menu_div.style.background = "#FFFFFF";
menu_div.style.width = "160px";
menu_div.style.height = "89px";
}
}
}