﻿
TESCO.$("sites.UI.Flyout").Navigation = (function() {

	//   constructor
	function _constructor(container) {
	    _constructor.base.constructor.call(this, container);
		new TESCO.sites.UI.ToggleNav(this.rect);
		return this;
	}
	_constructor.extend(TESCO.UI.Flyout.Navigation);

	//  public default attributes
	_constructor.prototype.NAME = "TESCO.sites.UI.Flyout.Navigation";

	//  return _constructor as function pointer
	return _constructor;
})();