$(document).ready(function(){
    $("#menu_section li.destination_item").hover(function() {
        $("#menu_destinations").stop(true, true).fadeIn("slow");
    }, function (){
        $("#menu_destinations").stop(true, true).fadeOut("slow");
    });

    //Cross slide
    $('#header_background').crossSlide({
        sleep: 5,
        fade: 1
    }, source);

    //Show submenus
    $("#menu_gallery li div.current ~ ul").show();
    $("#menu_gallery ul div.current").parents('ul').show();

    //Dialogs
    var $dialog_feedback =
        $("#feedbacks_detail").dialog({
            autoOpen: false,
            draggable: true,
            modal: true,
            width: 530,
            height: 350,
            closeText: 'x',
            buttons: obj_button_feedback
        });

    $("a.show_feedback").click(function(){
        $dialog_feedback.dialog('open');
        return false;
    });

    //Generic Dialogs
    $("a.show_dialog").click(function(){
        associatedDialog = "#" + $(this).attr('name');
        $(associatedDialog).dialog({
            draggable: true,
            modal: true,
            width: 530,
            height: 350,
            closeText: 'x'
        });
        return false;
    });

    $("a.show_dialog").click(function(){
        associatedDialog = "#" + $(this).attr('name');
        $(associatedDialog).dialog('option', 'width', 530);
        $(associatedDialog).dialog('option', 'height', 350);
        $(associatedDialog).dialog('open');
        return false;
    });
});
