/*******************************************
Created 2/23/2008 by Alan Curteman 
    for Oregon City GridIron Club
    
This is a support file to handle mouse rollovers 
 for menu bar and expanding/closing information windows
*******************************************/

var MenuOver = new Image(); 
var MenuDown = new Image(); 
var MenuDefault = new Image(); 
var MenuActive = new Image(); 

MenuOver.src = "images/navbar/bar-raised.gif"; 
MenuDown.src = "images/navbar/bar-inset.gif"; 
MenuDefault.src = "images/navbar/bar-inset2.gif"; 
MenuActive.src = "images/navbar/bar-active.gif"; 

function CloseFloatingNotice()	{
	FloatingNotice.style.display = "none";
}

function ShowMoreFloatingNotice()	{
	RafflePart2.style.display = "";
	SeeMore.style.display = "none";
}

function MouseOverLink(id) { 
  document.all[id + "Link"].style.color = "red";
  document.all[id].style.backgroundImage = "url(" + MenuOver.src + ")" ;
}

function MouseOutLink(id) { 
  document.all[id + "Link"].style.color = "black";
  document.all[id].style.backgroundImage = "url(" + MenuDefault.src + ")" ;
}

function MouseDownLink(id) { 
  document.all[id + "Link"].style.color = "silver";
  document.all[id].style.backgroundImage = "url(" + MenuDown.src + ")" ;
}

function MouseActiveLink(id) { 
  document.all[id + "Link"].style.color = "black";
  document.all[id].style.backgroundImage = "url(" + MenuActive.src + ")" ;
}

function Goto(Page) {
  document.location.href = Page + ".html";
}

