Google javascript css opacity...
First it changes the display of a div or other element from none to block with the opacity set to clear....
Then it executes a css fade in using a timer and javascript to increase the opacity at intervals.
then executes the reverse for the fade out and disappear.
HTML Code:
This is a very bad way to execute the function however, a bit of a no no.
<a href="javascript:shiftOpacity('loginbar');">login</a>
This would be a little better.
<a href="location of login page" onclick="shiftOpacity('loginbar'); return false;">login</a>