$(".status").attr("rel");
.status can have up to three other additional classes added to it. .online, .away, .offline
if I do this:
$(".status.online").attr("rel");
it works when status has online as a second class, but not when it's been changed, how can I do this and it not matter what other classes it has?