function init() {//wririte all links on the page to be redirected to the site 
    for(var i=0;i<document.links.length;i++) {
        if (document.links[i].href=='#') continue;
        if(!document.links[i].deja) { var tmp_link=document.links[i].href; var query = window.location.search.substring(1);
        tmp_link += ((tmp_link.indexOf('?') == -1) ? '?' : '&')+query; document.links[i].href=tmp_link; document.links[i].deja=1; }
    }
}
//window.onload=init;