why use that? that number, you can assign to rel or id attribute, like this:
<div class="home">
<div class="tab" rel="231891230"></div>
<div class="tab" rel="121232441"></div>
<div class="tab" rel="123134545"></div>
</div>
then it will be accessible at:
$('div.tab').click(yourhandler);
or even, add a subclass of that current "tab" class:
<div class="home">
<div class="tab 231891230"></div>
<div class="tab 121232441"></div>
<div class="tab 123134545"></div>
</div>
then, just select by "tab" class like in the jQuery example above,
and do whatever you want with the second class (check if it's there,
remove it).
check these:
http://api.jquery.com/class-selector/
http://api.jquery.com/hasClass/
http://api.jquery.com/addClass/
http://api.jquery.com/removeClass/