Hi all,
 
please give me advice how to change the tablink class to "tablink tablink-selected" from the settings iframe.
 
Currently I do ...
 
<script type="text/javascript">
function selectTab(){
  try{
    parent.document.getElementById("settingstabaccount").className="tablink tablink-selected";
  }
  catch(e){
    //selectTab();
  }
}
setTimeout('selectTab()','1000');
 
... but I'm sure there is a more professional way!
 
Thanks in advance.
 
-Roland