jQuery(document).ready(function() {
    jQuery('#slide').jcarousel({
        wrap: 'circular',
        scroll: 1,
        auto: 3,
        animation: "slow"
    });

    $('#d').click(function() {
        $("#de").dialog({
            modal: true,
            buttons: {
                Ok: function() {
                    $(this).dialog('close');
                }
            }
        });
    });

    $('#e').click(function() {
        $("#en").dialog({
            modal: true,
            buttons: {
                Ok: function() {
                    $(this).dialog('close');
                }
            }
        });
    });
});
