// For the Green Buttons
//===========================
function RasOver(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#425C8D";
elem.style.cursor = 'hand'}

function RasOut(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#425C8D";
}

function RasDown(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#425C8D";}

function RasUp(path)
{ 
parent.location.href = path;
}

// For Grey Buttons
//========================

function RasOverTab(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#425C8D";
elem.style.cursor = 'hand'}

function RasOutTop(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#96B1E0";
}

function RasDownTop(elem, clr)
{elem.style.backgroundColor = clr;
elem.children.tags('A')[0].style.color = "#96B1E0";}

function RasUpTop(path)
{ 
parent.location.href = path;
}

// ==================================
// IMage to flash

var slideShowSpeed = 5000;
var crossFadeDuration = 5;
var Pic = new Array();

Pic[0] = 'images/1.jpg'
Pic[1] = 'images/2.jpg'
Pic[2] = 'images/3.jpg'


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);
}
// Image 2 Flash

