function my_visuals() {
    var a = $("table.table_for_target").position();
    if (a) {
        $("div.target_div")
            .css("right", "7%")
            .css("top", a.top-35);
			
		$("div.target_div2")
            .css("right", "50px")
            .css("top", a.top-100);
			
		$("div.target_div3")
            .css("right", "50px")
            .css("top", a.top-60);
    }

    var b = $("table.tel_target").position();
    if (b) {
        $("div.tel_div")
            .css("right", "200px")
            .css("top", b.top-206);
    }
}

$(document).ready(function() {
    my_visuals();
    $(window).resize(function() { my_visuals(); });

    $("a.anchor").click(function() {
        var elementClick = $(this).attr("href");
        var destination = $(elementClick).offset().top;
        $("body:not(:animated)").animate({ scrollTop: destination }, 1000);
        // location.hash = this.hash;
        return false;
    });
});
