<!--
/**************************************************************************
*  The following code creates a default menu style called "galmenustyle". *
*  Additional styles can be created by copying this code changing         *
*  the name of the object "galmenustyle".                                 *
***************************************************************************/
galmenustyle = new galmenustyle();

with (galmenustyle){
	border_width = "1";
	border_style = "solid";
	border_color = "black";
	border_collapse = "collapse";
}

/*******************************************************************************
*  The following code creates a default menu cell style called "galcellstyle". *
*  Additional cell styles can be created by copying this code changing         *
*  the name of the object "galcellstyle".                                      *
*******************************************************************************/

galcellstyle = new galmenucellstyle();

with (galcellstyle){
	border_width = "1";
	border_style = "solid";
	border_color = "red";
	border_collapse = "collapse";
	padding = "2px 2px 2px 2px";
	background_color = "bisque"; 
	cursor = "pointer";
	font_family = "Arial"; 
	font_weight = "bold"; 
	font_size = "8pt"; 
	font_color = "green"; 
	text_decoration = "none";
	rollover_background_color = "coral";
	cell_width = "auto";
	}

mainMenuStyle = new galmenucellstyle();

with (mainMenuStyle){
	border_width = "1";
//	border_style = "solid";
	border_style = "none";
	border_color = "black";
	border_collapse = "collapse";
	padding = "3px 2px 3px 2px";
//	background_color = "#ACDEFF"; 
	background_color = "none"; 
	cursor = "pointer";
	font_family = "Arial"; 
	font_weight = "bold"; 
	font_size = "8pt"; 
	font_color = "navy"; 
//	font_color = "#FFFF7F"; 
	text_decoration = "none";
	text_align = "center";
	rollover_background_color = "#FFFF71";
	rollover_text_decoration = "underline";
	rollover_font_color = "blue";
	cell_width = "70px";
	}

wcbiaSubmenuStyle = new galmenucellstyle();

with (wcbiaSubmenuStyle){
	border_width = "1";
//	border_style = "solid";
	border_style = "none";
	border_color = "black";
	border_collapse = "collapse";
	padding = "5px 2px 5px 2px";
	background_color = "#ACDEFF"; 
//	background_color = "none"; 
	cursor = "pointer";
	font_family = "Arial"; 
	font_weight = "bold"; 
	font_size = "8pt"; 
	font_color = "navy"; 
	text_decoration = "none";
	text_align = "center";
	rollover_background_color = "#FFFF71";
	rollover_text_decoration = "underline";
	rollover_font_color = "blue";
	cell_width = "auto";
	}

hotNewsStyle = new galmenucellstyle();

with (hotNewsStyle){
	border_width = "1";
//	border_style = "solid";
	border_style = "none";
	border_color = "red";
	border_collapse = "collapse";
	padding = "5px 2px 5px 2px";
//	background_color = "bisque"; 
	background_color = "#ACDEFF"; 
	cursor = "pointer";
	font_family = "Arial"; 
	font_weight = "bold"; 
	font_size = "8pt"; 
//	font_color = "green"; 
	font_color = "navy"; 
	text_decoration = "none";
	text_align = "center";
//	rollover_background_color = "coral";
	rollover_background_color = "#FFFF71";
	rollover_text_decoration = "underline";
	rollover_font_color = "blue";
	cell_width = "auto";
	}

/**************************************************************************
*  The following code creates a style for the tooltip.                    *
***************************************************************************/
document.write("<style><!--#galtooltipstyle{"

	+ "border:1px solid black;"
	+ "padding:0px 5px 0px 5px;"
	+ "background-color:gold;"
	+ "font: 8pt arial;"
	+ "color: black;"

	+ "}--></style>");

//------------------------------------------------------------------------
-->