﻿// ********************* ProductMenuManager class ***********************

LangloWeb.ProductMenuManager = function() 
{
    Sys.Application.add_init(Function.createDelegate(this, this.handleAppInit));
}

LangloWeb.ProductMenuManager.prototype = 
{
    handleAppInit : function()
    {      
    }
}

LangloWeb.ProductMenuManager.registerClass('LangloWeb.ProductMenuManager'); 

if (typeof document.getElementById != 'undefined')
    ProductMenuManager = new LangloWeb.ProductMenuManager();

if (typeof(Sys) !== "undefined")
    Sys.Application.notifyScriptLoaded();
