﻿// JScript File

/*******************************************************************************/
// Functions

//*******************************************************************************
// Function:     RetrieveTopNavCookie()
// Author:       michael.chu@cgi.com
// Project:      iMove Build - 0.4
// Date:         Sep 28 2006
//
// Description:  Initializes the cookie for which default tab is selected
//
// Parameters:   
// Returns:
// Calls:        
// Called By:    Map onLoad() function
//
// Revision History:
//
//   Name        Date        Description
//  ------       ------      ------------------------------------------------
//  
//*******************************************************************************

function LoadTopNavCookie() 
{

    // check if cookie exists, if not then create one
	if( Get_Cookie( 'Motorists' ) == null ) newCookie();
	
	retrieveCookie(); // retrieve the cookie
}