$(document).ready(function () {

    // initialize scrollable together with the navigator plugin
    $("#carouselLayout").scrollable().navigator({

        // ul.tabs now functions as our navigator
        navi: '.navi1'
    });
    $("#majorItemImage").scrollable().navigator({

        // ul.tabs now functions as our navigator
        navi: '.navi2'
    });
});


//usage javascript:showDialog('4908','Testing');
function showDialog(ID, Title, Width, Height) {
    if ($(".popUpDialog").length > 0) {
        $(".popUpDialog").dialog("open");
        if ($.browser.msie && $.browser.version < 8) { $('.ui-dialog-titlebar-close').css('margin-top', '1px'); }
    } else {
        $('body').append('<div class="popUpDialog"></div>');
        Width = (Width != null && Width != '') ? Width : 640;
        Height = (Height != null && Height != '') ? Height : 480;
        $(".popUpDialog").dialog({ autoOpen: true, height: Height, width: Width, modal: true, draggable: false, resizable: false, position: 'center', title: '<h4>' + Title + '</h4>', zIndex: 100000 });
    }

    $.ajax({
        url: '/popupdialog.ashx?id=' + ID,
        async: false,
        success: function (data) {
            $(".popUpDialog").html(data);
        }
    });
}
