﻿// Copyright © 2007 Jeffrey Bazinet, http://www.vwd-cms.com/ 
//  functions for VwdCms.Toolbar  

var _toolbarButtonBorderStyle = null;
var _toolbarButtonBackgroundColor = null;
var _toolbarButtonFontColor = null;
function VwdCmsToolbar_ButtonOver(button)
{
	if (_toolbarButtonBorderStyle == null)
	{
		_toolbarButtonBorderStyle = button.style.border;
		if (_toolbarButtonBorderStyle == "")
		{
			_toolbarButtonBorderStyle = "solid 1px transparent";
		}
		_toolbarButtonBackgroundColor = button.style.backgroundColor;
		if (_toolbarButtonBackgroundColor == "")
		{
			_toolbarButtonBackgroundColor = "transparent";
		}
		_toolbarButtonFontColor = button.style.color;
		if (_toolbarButtonFontColor == "")
		{
			_toolbarButtonFontColor = "#999999";
		}
	}
	if(button.innerHTML == "&nbsp;")
	{
		button.style.border='solid 1px steelblue';
		button.style.backgroundColor='lightsteelblue';
		button.style.color='transparent'; 
	}
	else
	{
		button.style.border='solid 1px #9999cc';
		button.style.backgroundColor='#565656';
		button.style.color='red'; 
	}
}
function VwdCmsToolbar_ButtonOut(button)
{
	button.style.border=_toolbarButtonBorderStyle;
	button.style.backgroundColor=_toolbarButtonBackgroundColor;
	button.style.color=_toolbarButtonFontColor;
}
