﻿$(document).ready(function(){InitialImageGalleryEvents();});

function InitialImageGalleryEvents()
{
    MIHomes.Web.WebSite.AjaxServices.ImageGalleryService.set_timeout(8000);
}

function GetImageGalleryByProductId(productId, productType, onSuccess, onError)
{
    if (onSuccess == null)
        onSuccess = onImageGalleryReceivedDefault;
    if (onError == null)
        onError = onImageGalleryReceivedErrorDefault;
    MIHomes.Web.WebSite.AjaxServices.ImageGalleryService.GetImagesByProductId(productId, productType, onSuccess, onError)
}

function onImageGalleryReceivedDefault(result)
{
}

function onImageGalleryReceivedErrorDefault(result)
{

}
