This is quite simple - it is a bug with FadeIn/FadeOut and setting your background to transparent I am afraid.
What happens is the control seems to use the lowest bg property it can find, and makes everything else above that transparent. The transparent property effectively 'grabs' the bg colour of the element below it, and displays that - instead of being truly trasparent. So, I think that your grey brushed metal page background must have also a background colour property of 'black' or #000000. Check the body tag in your style rules also, and change the BG to white, or remove it completely.
In your case, there are 2 steps to rectify this:
- Ensure that the ticker does not exceed the width of the page
- Rather than setting the bg property to none or transparent, set it to white, which as far as I can tell, matches your page content background.
Let me know if these steps work.
Thanks,
Steve
EDIT: Just double checked the site - your body tag (in Main.css) is indeed setting a bg property of black (#000000). Changing this to white should help!