
function initGoogleMap(){
    if ($('#google-map').length){
        var latlng = new google.maps.LatLng(51.078933,17.069744);
        var myOptions = {
            zoom: 16,
            center: latlng,
            mapTypeId: google.maps.MapTypeId.SATELLITE
        };
        var map = new google.maps.Map(document.getElementById('google-map'),
            myOptions);
        var marker = new google.maps.Marker({
            position: latlng,
            map:  map,
            title: 'Garaventa Lift'
        });

        var infoWindow = new google.maps.InfoWindow({
            position: latlng,
            map: map,
            content: '<div style="width: 230px" id="infowindow-content"><img class="map-logo" src="gfx/p.gif" alt="p" /><strong>Garaventa Lift Polska Sp. z o. o.</strong><br />ul. Międzyleska 4,<br />50-514 Wrocław<br />tel. +48 71 333-64-94<br />fax. +48 71 333-64-94</div>'
        });
        google.maps.event.addListener(marker, 'click', function() {
            if (infoWindow.getMap() == null){
                infoWindow.setPosition(latlng);
                infoWindow.open(map,marker);
            }
        });
    }

}

function initRightForm(){
    $('#send-right-form').live('click', function(event){
        event.preventDefault();
        $(this).hide();
        $('.ajax-loader').show();
        var formElement = $('#right-form');
        $.ajax({
            type: "POST",
            url: '/right-form',
            data: formElement.serialize(),
            success: function(data){
                $('.ajax-loader').hide();
                $('#send-right-form').show();
                formElement.replaceWith(data);
            }
        });
    });
}

function initPrinting(){
    $('#print-page').click(function(event){
        event.preventDefault();
        window.print();
    });
}

function initProductTabs(){
    $('.technical-data tr:nth-child(odd)').css('background-color', '#F5F6DC');
    $('.technical-data tr:nth-child(even)').css('background-color', '#EFEFF1');
    $('.technical-data td:first-child').css('font-weight', 'bold');

    $('.tab1').click(function(){
       $('.tabs li').removeClass('active');
       $(this).addClass('active');

       $('.tab-content').hide();
       $('.tab-content.n1').show();
    });
    $('.tab2').click(function(){
       $('.tabs li').removeClass('active');
       $(this).addClass('active');

       $('.tab-content').hide();
       $('.tab-content.n2').show();
    });
    $('.tab3').click(function(){
       $('.tabs li').removeClass('active');
       $(this).addClass('active');

       $('.tab-content').hide();
       $('.tab-content.n3').show();
    });
    $('.tab4').click(function(){
       $('.tabs li').removeClass('active');
       $(this).addClass('active');

       $('.tab-content').hide();
       $('.tab-content.n4').show();
    });
}

$(document).ready(function(){
    initGoogleMap();
    initPrinting();
    initRightForm();
    initProductTabs();
});
function showMail(e,d,f){
    document.write('<a href="mailto:'+e+"@"+d+"."+f+'">'+e+"@"+d+"."+f+"</a>")
}
