﻿function initSitetourDrag(textboxPartialID){
    $(".draggable").draggable({
        stop: function(event, ui) {
            if ( textboxPartialID != undefined )
                $('input:text[id*=' + textboxPartialID + ']').val(Math.round(ui.position.left) + ',' + Math.round(ui.position.top));
        }
    });
}

function checkInzetHoogte(){
    /* als de hoogte van het inzetstukje groter is 
    dan het contentvlak dan stellen we hoogte gelijkt */
    var intContentHeight = $('#content').height();
    var intInzetHeight = $('.inzet').height() + 20; 

    if ( intInzetHeight > intContentHeight )
        $('#content').height(intInzetHeight);
}

$(document).ready(function() {
    initMenu();
    initSitetourDrag();
    checkInzetHoogte();
});
