﻿function OnMouseHover(BackgroundClass, MenuBox)
{
	var Banner = document.getElementById("IDbanner");
//	var Quote  = document.getElementById("IDquote");
//	var Title  = document.getElementById("IDtitle");
	
	if (Banner) 
	{
    	Banner.className = BackgroundClass;
    }	
//	if (Title) Title.style.marginTop = TitleMargin;
//	if (Quote)
	{
//		Quote.innerHTML = Quotation;
//		Quote.style.marginTop = QuoteMargin;
	}
	MenuBox.style.backgroundColor = '#F7F7F7';
	MenuBox.style.border = '1px #EDEDED solid';
}

function OnMouseOut(MenuBox)
{
	var Banner = document.getElementById("IDbanner");
//	var Quote  = document.getElementById("IDquote");
//	var Title  = document.getElementById("IDtitle");
	
	if (Banner) Banner.className = 'banner';
//	if (Title) Title.style.marginTop = '';
//	if (Quote)
//	{
//		Quote.innerHTML = 'KEEPING YOUR BUSINESS<br>AND INVESTMENTS SAFE.';
//		Quote.style.marginTop = '';
//	}
	MenuBox.style.backgroundColor = '';
	MenuBox.style.border = '1px #FFFFFF solid';
}

function OnMenuHover(menu, imagefile, fixed)
{
  menu.style.background = "transparent url('images/" + imagefile + "') " + fixed;
  menu.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + imagefile + "', sizingMethod='scale')";
  

}

function OnMenuOut(menu)
{
  menu.style.background = "";
  
}
