if (location.href.indexOf('/www.')==-1 && location.href.indexOf('secotools.com/')!=-1)
    location.href = location.href.substr(0,location.href.indexOf('://')+3) + 'www.' + location.href.replace(location.href.substr(0,location.href.indexOf('://')+3), '');

$(document).ready(function(){
 
   // show first tab content
   $("#page_quicknav_content .seco_page_quicknav_tabcontent:first").show();
 
   // bind tab client-side functionality
    $("#page_quicknav_tabs div a").bind("click", function(e){
      //reset tab classes and set class on current tab
        $("#page_quicknav_tabs div").removeClass("seco_on");  
        $(this).parent("div").addClass("seco_on");        
      //hide visible content and show current tab
        $(".seco_page_quicknav_tabcontent").hide();
        $("#quicknav_content_"+$(this).attr("id").substring(13)).show();
    });
   
 });
