//	Author: Kyle Reguero
// 	Created Date: 01.10.2010



/* Start Rotating banner code */

var theImage = new Array()
theImage[0] = '/tribaltech/images/on.png'
theImage[1] = '/tribaltech/images/on.png'
theImage[2] = '/tribaltech/images/on.png'
theImage[3] = '/tribaltech/images/on.png'
theImage[4] = '/tribaltech/images/on.png'

function orimage()
{
document.getElementById("myImage1").src="/tribaltech/images/off.png"
document.getElementById("myImage2").src="/tribaltech/images/off.png"
document.getElementById("myImage3").src="/tribaltech/images/off.png"
document.getElementById("myImage4").src="/tribaltech/images/off.png"
document.getElementById("myImage5").src="/tribaltech/images/off.png"
}

active = Math.floor(0);
var arrayLength = 5;
k = 1;
var fadeinTimer,fadeoutTimer,hideTimer;
function animate(i,interaction)
{
	clearTimeout(fadeinTimer);
	clearTimeout(fadeoutTimer);
	clearTimeout(hideTimer);
	if(interaction=="first")
	{
		fadeIn(i);
		active = i;
		k = active;
	    timerID = setInterval("autorotator()",7400);// Adjust banner speeed here
	}
	if(interaction==true)
	{	
		timerID=clearInterval(timerID);
	}
	orimage();
	if(active!=i)
	{
		fadeOut(active);
		fadeIn(i);
		active = i;
	}
	document.getElementById("myImage" + (i+1)).src=theImage[i];
	if(interaction==true)
	{
		k = active;
		timerID = setInterval("autorotator()",9000);// Adjust banner speeed here
	}
}

function autorotator()
{
	animate(k,false);
	if(k!=4)
	{
		k=k+1;
	}
	else
	{
		k =0;
	}
}

function getElm(eID) {
	return document.getElementById(eID);
}
function show(eID) {
	getElm(eID).style.display='block';
}
function hide(eID) {
	getElm(eID).style.display='none';
}
function setOpacity(eID, opacityLevel) {
	var eStyle = getElm(eID).style;
	eStyle.opacity = opacityLevel / 100;
	eStyle.filter = 'alpha(opacity='+opacityLevel+')';
}
function fadeIn(eID) {
	setOpacity(eID, 0); show(eID); var timer = 0;
	for (var i=1; i<=100; i++) {
		fadeinTimer = setTimeout("setOpacity('"+eID+"',"+i+")", timer * 5);
		timer++;
	}
}
function fadeOut(eID) {
	var timer = 0;
	for (var i=100; i>=1; i--) {
		fadeoutTimer = setTimeout("setOpacity('"+eID+"',"+i+")", timer * 3);
		timer++;
	}
	hideTimer = setTimeout("hide('"+eID+"')", 500);
}
/* End Rotating banner code */




/* Start Rotating Fading text */
var DivID = "attentioncopyid";
var Speed = 40;
var Content = new Array();

/* Modify links and text for banner below */
Content[0] = "";
Content[1] = "";
Content[2] = "";

var MaskColors = new Array;
MaskColors[0] = "#000000";
var ContentTop = Content.length - 1;
var MaskTop = MaskColors.length - 1;
var DigitList = "0123456789ABCDEF".split("");
var DigitPointer = 15;
var ContentPointer = ContentTop;
var ColorPointer = MaskTop;
var CurrentDirection = 'up';
var thiscolor = '';
function FadeFunction() {

}
function resumefader()
{
	fadeingTimer =	setInterval("FadeFunction()",Speed);
}
/* End Rotating Fading text */






/* Start Accordian code */
var accordion=function(){
	var tm=sp=10;
	function slider(n){this.nm=n; this.arr=[]}
	slider.prototype.init=function(t,c,k){
		var a,h,s,l,i; a=document.getElementById(t); this.sl=k?k:'';
		h=a.getElementsByTagName('span'); s=a.getElementsByTagName('div'); this.l=h.length;
		for(i=0;i<this.l;i++){var d=h[i]; this.arr[i]=d; d.onmouseover=new Function(this.nm+'.pro(this)'); if(c==i){d.className=this.sl}}
		l=s.length;
		for(i=0;i<l;i++){var d=s[i]; d.mh=d.offsetHeight; if(c!=i){d.style.height=0; d.style.display='none'}}
	}
	slider.prototype.pro=function(d){
		for(var i=0;i<this.l;i++){
			var h=this.arr[i], s=h.nextSibling; s=s.nodeType!=1?s.nextSibling:s; clearInterval(s.tm);
			if(h==d){s.style.display=''; su(s,1); h.className=this.sl}
			else if(s.style.display==''){su(s,-1); h.className=''}
		}
	}
	function su(c,f){c.tm=setInterval(function(){sl(c,f)},tm)}
	function sl(c,f){
		var h=c.offsetHeight, m=c.mh, d=f==1?m-h:h; c.style.height=h+(Math.ceil(d/sp)*f)+'px';
		c.style.opacity=h/m; c.style.filter='alpha(opacity='+h*100/m+')';
		if(f==1&&h>=m){clearInterval(c.tm)}else if(f!=1&&h==1){c.style.display='none'; clearInterval(c.tm)}
	}
	return{slider:slider}
}();

function change()
{
	if(navigator.appName == 'Microsoft Internet Explorer')
	{
		document.searchForm.group.style.visibility='hidden';

	}
	document.getElementById("light").style.display="block";
	document.getElementById("fade").style.display="block";
	document.getElementById("light").innerHTML = "<div id='load' style='margin-right:250px; margin-top:50px;'><img src='http://www.oracleimg.com/ocom/groups/systemobject/@mktg_admin/documents/digitalasset/sitefinder_loader.gif' width='32' height='32' /></div><iframe src='/ocom/groups/public/@ocom/documents/webcontent/sitefinder.htm' frameborder='0' width='624' height='455' scrolling='no' allowtransparency='true' id='siteid' style='visibility:hidden'></iframe>";
}


/* End Accordian code */

function bubbleEvent(e)
{
	if (!e) var e = window.event;
	e.cancelBubble = true;
	if (e.stopPropagation) e.stopPropagation();
}

