/*-------------------  NS4 and Mac IE Menu Measurements  -------------------------------*/
/** 
 * mac ie needs width & height w/unit (px) and z-index
 *
 * NS 4 needs width/height and clip (unit optional). ex: clip: rect:(0, <width>, <height>, 0);
#about, #aboutFrame {
	width: 120px;
	height:88px;
	clip: rect(0, 100, 88, 0);
	z-index: 10;
}
#department, #departmentFrame {
	width: 82px;
	height: 40px;
	clip: rect(0, 70, 40, 0);
	z-index: 12;
} */

/** 
 * NS 4 needs positioning;
#aboutFrame{
	left: 250;
	top: 104;
}
#departmentFrame{
	left: 542;
	top: 126;
}
 */

