I have the following code:
<a href="main.html" class="admin"><div class="buttonlabel">Admin</div></a>
and CSS
a.admin
{
display:block;
text-decoration:none;
float:left;
background: transparent url(./images/adminnormal.png?rand=628) no-repeat top center;
height:75px;
width:75px;
margin:5px;
outline: #00FF00 dotted thick;
}
The code above has this output:

I want this link to be outlined only when a user clicks it (onclick). Any ideas how to do that?
HTML:
CSS:
jQuery: