function google_maps_onload(){
    if($(".google_maps").length > 0){
        // Init
        var innerWidth = document.body.clientWidth;
        var innerHeight = document.body.clientHeight;
        if( $(".pagewrapper_two-col_large").length > 0 ){
            var innerWidth = document.body.clientWidth - 550;
            var innerHeight = document.body.clientHeight;
        }else{
            var innerWidth = document.body.clientWidth - 460;
            var innerHeight = document.body.clientHeight;
        }

        integration(innerWidth, innerHeight);
    }
}
function google_maps_resize(){
    if($(".google_maps").length > 0){
        // Init
        var innerWidth = document.body.clientWidth;
        var innerHeight = document.body.clientHeight;
        if( $(".pagewrapper_two-col_large").length > 0 ){
            var innerWidth = document.body.clientWidth - 550;
            var innerHeight = document.body.clientHeight;
        }else{
            var innerWidth = document.body.clientWidth - 460;
            var innerHeight = document.body.clientHeight;
        }

        integration(innerWidth, innerHeight);
    }
}

function integration(innerWidth, innerHeight){
    google_int = '<iframe width=\"'+innerWidth+'\" height=\"'+innerHeight+'\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Parkhotel+Zug+Industriestrasse+14+CH-6304+Zug&amp;sll=37.0625,-95.677068&amp;sspn=33.626896,78.662109&amp;ie=UTF8&amp;hq=Parkhotel+Zug+Industriestrasse+14+CH-6304+Zug&amp;hnear=&amp;radius=15000&amp;cid=1991465697342958386&amp;ll=47.180963,8.521013&amp;spn=0.020418,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed\"></iframe>';

    // Integration
    $(".google_maps").html(google_int);
}


            

