﻿/// <reference path="intellisense/intellisense.js" />

/******************************************************************************
**      Desc: Contains methods for use by site.master master page.
**		Auth: Samir Patel
**		Date: 02/08/2007
*******************************************************************************
**		Change History
*******************************************************************************
**		Date:		Author:		Description:
**		-----------	-----------	-----------------------------------------------
**		02/08/2007	Samir P.	File created.
*******************************************************************************/

/******************************************************************************
	Namespace Registration
******************************************************************************/

Type.registerNamespace("Fidelity.Scripts");

/******************************************************************************
	Fidelity.Scripts.SiteMaster static class
******************************************************************************/

Fidelity.Scripts.SiteMaster = function ()
{
	/// <summary>Fidelity.Scripts.SiteMaster static class.</summary>
	
	// this is a static class, so an exception will be thrown if attempt to 
	// instantiate this class is made with the 'new' operator.
	throw Error.notImplemented(); 
};

Fidelity.Scripts.SiteMaster.prototype = 
{
	initialize : function ()
	{
		/// <summary>Initializes the resources required by the master page.</summary>
		
		// initialize the tooltip
		Tooltip.init();
	}
};

// register static class
Fidelity.Scripts.SiteMaster.registerStaticClass("Fidelity.Scripts.SiteMaster");


// Notify ScriptManager that this is the end of the script.
if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();