  $(document).ready(function() {          $(".nav1").click(function() {
            if (!$('#see_map').is(":visible")) {
                $(this).find("span").html('&ndash;');
                $('#see_map').slideDown('slow', function () { google.maps.event.trigger(map, 'resize'); map.setCenter(new google.maps.LatLng(46.769454,23.585415)); });                $('#main article').slideUp('slow');
            }
            else {
                $(this).find("span").html('+');
                $('#see_map').slideUp('slow');                $('#main article').slideDown('slow');
            }
            return false;
        });

        $(".about").click(function() {
            $(this).css("color", "#ff4040");
            $(this).siblings().css("color", "#999");

            var id = "a-"+$(this).attr("id").replace("a", "");

            $("#p-about").show();
            $("#"+id).slideDown('fast');
            $("#"+id).siblings().slideUp('fast');
            return false;
        });
    });


$(function () {
             $('#see_it').click(function () {
                 $('html, body').animate({
                     scrollTop: $(document).height()
                 },
                 1500);
                 return false;
             });

             $('#scrlTop').click(function () {
                 $('html, body').animate({
                     scrollTop: '0px'
                 },
                 1500);
                 return false;
             });
         }); 
