function collapse(div, img) {
    if (document.getElementById(div).style.display == "none") {
        document.getElementById(div).style.display = "block";
        document.getElementById(img).src = "/images/collapse-down.jpg"
    }
    else {
        document.getElementById(div).style.display = "none";
        document.getElementById(img).src = "/images/collapse-right.jpg"
    }
}

$(document).ready(function() {
    $('#zanachka').click(function() {
        $('#regForm').toggle();
    });

    $('#regFormExit').click(function() {
        $('#regForm').hide();
    });

    $("h2").append('<em></em>');
    $(".thumbs a").click(function() {
        var largePath = $(this).attr("href");
        var largeAlt = $(this).attr("title");
        $("#largeImg").attr({ src: largePath, alt: largeAlt });
        $("h2 em").html(" (" + largeAlt + ")"); return false;
    });
});

$(document).ready(function() {
    $('#select_city_field, #selected_city').click(function (ev) {
        var e = $("#your-region-name");
        var p = e.offset();

        var popup = $('#select_city');
        var h = popup.height();
        var w = popup.width();

        popup.css({ top: Math.round(p.top) + 10, left: Math.round(p.left) - w / 2 + 42 }).toggle();
        ev.preventDefault();
    });

    $('#select_city_top_exit').click(function(ev) {
        $('#select_city').hide();
        ev.preventDefault();
    });
});
