// Create the system namespace
if (typeof SEAT.PG === "undefined") {
  SEAT.PG = {};
}

/**
 * System wide constants
 */
SEAT.PG.HOST = '/pgol';
SEAT.PG.URI_MAP = { vcc:    '1-',
                    offset: '2-',
                    dove:   '3-',
                    cosa:   '4-',
                    chi:    '5-',
                    marca:  '6-',
                    lingua: 'l-',
                    page:   'p-'};
                    

// Id of the div used in the header to display the "Network Seat" drop-down of links
SEAT.PG.ID_NETWORK_SEAT = 'netSeat';

SEAT.PG.INDEX_TYPE_PRODOTTO = 'p';
SEAT.PG.INDEX_TYPE_HOME = 'h';


// List of images to be displayed in the Home Pages.
// The main Home Page randomly selects an image from the whole list while the Product Home Page selects
// from a subset.
// t = type ('' = generic, 'p' = product)
// c = Codice Categoria for the search
// k = Keyword for the search (Categoria takes precedence)
// i = image name
// a = title
SEAT.PG.HP_IMG_PFX = 'http://immagini.paginegialle.it/pgolnew/img/hp/';
SEAT.PG.HP_IMGS = [ {t: '', c: '000061100', k:'', i:'abiti-da-cerimonia-1.jpg', a: 'abiti da sposa e cerimonia'},
                    {t: '', c: '000330600', k:'', i:'agenzie-viaggi-turismo-1.jpg', a: 'agenzie viaggi e turismo'},
                    {t: '', c: '000355100', k:'', i:'agriturismo-1.jpg', a: 'agriturismo'},
                    {t: '', c: '001103600', k:'', i:'autonoleggio-1.jpg', a: 'autonoleggio'},
                    {t: '', c: '001667100', k:'', i:'campeggi-ostelli-villaggi-1.jpg', a: 'capeggi, ostelli e villaggi turistici'},
                    {t: '', c: '002525100', k:'', i:'condizionamento-aria-impianti-1.jpg', a: 'condizionamento aria impianti - installazione e manutenzione'},
                    {t: '', c: '003267200', k:'', i:'energia-solare-alternativa-1.jpg', a: 'energia solare ed energie alternative'},
                    {t: '', c: '004559100', k:'', i:'istituti-bellezza-1.jpg', a: 'istituti di bellezza'},
                    {t: '', c: '006320100', k:'', i:'palestre-fitness-1.jpg', a: 'palestre e fitness'},
                    {t: '', c: '', k:'parrucchieri', i:'parrucchieri-1.jpg', a: 'parrucchieri'},
                    {t: '', c: '008206600', k:'', i:'serramenti-infissi-1.jpg', a: 'serramenti ed infissi'},
                    {t: '', c: '005969200', k:'', i:'tende-sole-1.jpg', a: 'tende da sole'},
                    {t: '', c: '009649100', k:'', i:'zanzariere-1.jpg', a: 'zanzariere'}];