/*jQuery.root = jQuery(document);
var map = jQuery.root.find('.europe_map'),
    zoom_level = 0;

jQuery(window).load(function () {
    jQuery('#map_image').attr("width", map.width() + 300).attr("height", map.width() + 300);
    map.mobilymap({
        position: 'center',
        popupClass: 'bubble',
        markerClass: 'point',
        popup: true,
        cookies: false,
        caption: false,
        setCenter: true,
        navigation: false,
        navSpeed: 1000,
        navBtnClass: 'navBtn',
        outsideButtons: 'a.mapbtn'
    });
    jQuery("#zoom_out_btn").click(function () {
        map.zoom('out', 500);
        zoom_level = zoom_level - 1;
        map.update_div();
        return false;
    });
    jQuery("#zoom_in_btn").click(function () {
        map.zoom('in', 500);
        zoom_level = zoom_level + 1;
        map.update_div();
        return false;
    });
    map.update_div();
});

function resizeWindow(e) {
    wrapper.height(jQuery('#container').height() - 10);
    map_content.width(jQuery('#wrapper').width() - 271);
    tab_content.height(jQuery('#wrapper').height() - 115);
    if (map_content.width() + 300 > jQuery('#map_image').attr("width") || zoom_level == 0) {
        jQuery('.road_show').attr("width", map_content.width() + 300).attr("height", map_content.width() + 300);
        jQuery('#map_image').attr("width", map_content.width() + 300).attr("height", map_content.width() + 300);
    }
    map.update_div();
}*/
