[jQuery] change LI class onclick of A inside

[jQuery] change LI class onclick of A inside


i'm using Glossymenu at dynamic drive:
http://www.dynamicdrive.com/style/csslibrary/item/glossy_horizontal_menu/
what i want to accomplish is when I click one of the links inside the
LI element, the LI's in the UL lose their class of 'current' and the
clicked LI gains the class 'current'
i have the menu driving links to open content in an iframe so, i'm not
going to reload the menu each time i choose a different tab - this is
why i wish to use jquery.
can someone correct my syntax - i can't seem to get it to work
$("li.glossymenu").bind("onclick",function(){
        $("li.glossymenu").removeclass('current');
$(this).addclass('current');
    };
    );
thanks