// JavaScript Document
$(document).ready(function() {
    $('a.mapopen').click(function() {
        var m = $('div.mapopen');
        var leftpos = ($(window).width() - 800) / 2;
        m.css('left', leftpos);
        m.show();
        var allh = $(document).height();
        $('.overlay').css('height', allh).show();
        return false;
    });
    $('.popup_close').click(function() {
        $('div.mapopen').hide();
        $('.overlay').hide();
        return false;
    });

    $('a.map').click(function(){
        $(this).addClass('current');
        $('a.rute').removeClass('current');
        $('img.themap').show();
        $('img.theakses').hide();
        return false;
    });

    $('a.rute').click(function(){
        $(this).addClass('current');
        $('a.map').removeClass('current');
        $('img.themap').hide();
        $('img.theakses').show();
        return false;
    });

});

