$(document).ready( function() {
    var showModal = function() {
        $('#yhteydenotto-modal').show();
    }
    var hideModal = function() {
        $('.jqmWindowOverlay').hide();
        $('#yhteydenotto-modal').hide();
    }

    $('#hd-form').change( function() {
        if ($('#hd-form option:selected').val() != '') {
            if ($('#hd-form option:selected').val().match(/http:/)) {
                window.location = $('#hd-form option:selected').val();
            } else {
                $('#yhteydenotto-modal').jqm({
                    ajax: '/asiakaspalvelu/toimintahairio/dialog.php?form='+ $('#hd-form option:selected').val(),
                    overlay: 50,
                    overlayClass: 'jqmWindowOverlay',
                    onShow: showModal,
                    onHide: hideModal
                });
                $('#yhteydenotto-modal').jqmShow();
            }
        }
    });

    $('.hd-form').click( function() {
        if ($(this).attr('href').match(/http:/)) {
            window.location = $('.hd-form').attr('href');
        } else {
            $('#yhteydenotto-modal').jqm({
                ajax: '/asiakaspalvelu/toimintahairio/dialog.php?form='+ $(this).attr('rel'),
                overlay: 50,
                overlayClass: 'jqmWindowOverlay',
                onShow: showModal,
                onHide: hideModal
            });
            $('#yhteydenotto-modal').jqmShow();
        }
    });
});
