[jQuery] consume click event

[jQuery] consume click event


I need to change click event for "each click" I have nex code:
function collapseSection(ID_SECCION)
{
    jQuery("#HS_"+ID_SECCION).bind("click",function()
{expandSection(ID_SECCION);return false;});
}
function expandSection(ID_SECCION)
{
jQuery("#HS_"+ID_SECCION).bind("click",function()
{collapseSection(ID_SECCION);return false;});
}
Then I have a TD with click event:
< td click="loadDiv(1)">
function loadDiv(ID_SECCION)
{
jQuery("#HS_"+ID_SECCION).bind("click",function()
{collapseSection(ID_SECCION);return false;});
}
Then If I execute and click on td first time begins a loop :
collapseSection expandSection...
Seems that click event is not consumed and then every time that I bind
"click" the click is executed....
I don't know how stop the loop!!!
Many thanks