/* 
========================================================================================================= CREDITS
Copyright : Copyright (c) 2008 Blue Streak. All Rights Reserved.
Author(s) : Larry Daughenbaugh - ldaughenbaugh@systemsynapse.com 
Date      : 10/07/2008 
Notes     	: JavaScript file for handling various events ... onLoad, onClick, etc
========================================================================================================= CHANGE LOG
Date		Name			Desc
---			---				---
========================================================================================================= BEGIN JAVASCRIPT
*/
/* ====================================================================================================== SWAP/RESTORE IMAGE */
function restoreImg() {
	var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) {
	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
		d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function swapImg() {
	var i,j=0,x,a=swapImg.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
	if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

/* ====================================================================================================== DROPDOWN JUMP MENU */
function jumpMenu(targ,selObj,restore){
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
}

/* ====================================================================================================== MULTIPLE ONLOAD HANDLER */
var onLoadFunctions = new Array();
var iloadFunction = 0;

// Pass each function that needs to load
function addOnLoad(func) {
    onLoadFunctions[iloadFunction] = func;
    iloadFunction++;
}
// Loops through all of the functions that were added
function loadAllFunctions() {
    for(i=0; i < onLoadFunctions.length; i++) {
        eval(onLoadFunctions[i]+"()");
    }
}

// Load all of the functions that you've set
window.onload = loadAllFunctions;

/* ====================================================================================================== CALL FUNCTIONS TO BE LOADED */

addOnLoad("loadFlash");
addOnLoad("jumpMenus");

/* ====================================================================================================== FUNCTIONS TO BE LOADED ON PAGE LOAD */
/* =========================================================== IMAGE PRELOADER */
/*
function preloadImages() {
    // Array of any images you want to preload 
    var ImagesToPreload = new Array();
        ImagesToPreload[0] = "";

    var graphics = new Array();
    for (iLoad=0; iLoad < ImagesToPreload.length; iLoad++) {
        graphics[iLoad] = new Image();
        graphics[iLoad].src = ImagesToPreload[iLoad];
    }
}
*/

/* ====================================================================================================== LOAD FLASH FILES */
function loadFlash() {
	if (document.getElementById('home-flash') != null) {
        var flashvars = { };
        var params = {
            wmode: "transparent"
        };
        var attributes = {};

		swfobject.embedSWF("/lib/swf/main.swf", "home-flash", "897", "539", "9.0.0", "/lib/swf/expressInstall.swf", flashvars, params, attributes);
		if (document.getElementById('home-alt') != null) {
		    document.getElementById('home-alt').style.visibility = "visible";
		}
    }
}

/* ====================================================================================================== LOAD JUMP MENUS */
function jumpMenus() {
	if (document.getElementById('jumpToPartner') != null) {
		document.getElementById('jumpToPartner').onchange = function() {
			jumpMenu('parent',this,0);
		}
    }
}

