jQuery.fn.tabbed_form_solo_con_varios_fieldsets = function( options )
{
  return this.each(function()
  {
    if(jQuery('> fieldset', this).length > 2)
    {
      jQuery(this).tabbed_form(options);
    }
  });
}

