$(document).ready(function(){
    $(".right_email").attr("href","mai"+"lto:su"+"ppor"+"t@w"+"ritemypa"+"pers.org").text("su"+"ppor"+"t@w"+"ritemypa"+"pers.org");
    $(".top_menu a").hover(function(){
        $(this).find("img").attr("src",$(this).find("img").attr("src").replace(".png","_hover.png"));
    },function(){
        $(this).find("img").attr("src",$(this).find("img").attr("src").replace("_hover",""));
    });
    $(".inquiry_button").hover(function(){
        $(this).find(".pop_up_tip").show();
    },function(){
        $(this).find(".pop_up_tip").hide();
    });
    $(".links_table a").each(function(){
        $(this).after("<span onclick=\"window.location='"+$(this).attr("href")+"'\">"+$(this).text()+"</span>").remove();
    });
});

function goToId(id) {
    var old = ""+document.location;
    old = old.replace(/#.*$/,"");
    document.location = old+"#"+id;
}
