For example, when user press reset_toggler, toggler should begin from 1st function again
$('a.reset_toggler').click(function ()
{
// … ?
});
$('a.toggler').toggle(
function ()
{
// 1
},
function ()
{
// 2
},
function ()
{
// …
},
function ()
{
// 10
}
);