
$(document).ready(function(){

    /*function to adjust tabs behaviour - as anchors they keep the hand cursor feature, but we need to ged rid of the default action*/
    fixTabs()
    
    /*function for fixing email addresses broken in order to avoid spamming spiders*/
    mixMail();


    /*adding round corners to the layout*/
    roundCorners();
     
    /*duplication of user set widgets heights to their rc_content parts*/
    rcUserHeights();
          
    /*loads saved zoom settings from cookie*/
   loadzoom();
    
    /*loads custom js files*/
    for(var i=0;i<files2include.length;i++){
      include_once(files2include[i]);
    }
    

    /*proceeds custom onload js commands*/
    for(var i=0;i<onloadActions.length;i++){
      eval(onloadActions[i]);
    }
  
    //loads content to iframes
    setIframes();

});