<public:component> <public:attach event="onmouseover" onevent="itemOnMouseOver()" /> <public:attach event="onmouseout" onevent="itemOnMouseOut()" /> <script language="javascript"> function itemOnMouseOver(){ with (element) { with (style) { //backgroundColor = "highlight" backgroundColor = "#E4E8EF" //color = "highlighttext" } } } function itemOnMouseOut(){ with (element) { with (style) { backgroundColor = "" color = "" } } } </script> </public:component>