window.addEvent('domready', function() {		
	var subnav = $('subnav');
	
	if(subnav){
		var content_include = new Element('ul');
		
		if($('wa-quisommesnous') || $('blogs')){
			new Element('a', {
				href : '/quisommesnous/quisommesnous',
				text : 'Qui sommes-nous?'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/quisommesnous/contacteznous',
				text : 'Contactez-nous'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/quisommesnous/nospartenaires',
				text : 'Nos partenaires'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/quisommesnous/nosgens',
				text : 'Nos gens'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/quisommesnous/ambassadeurs',
				text : 'Athlètes Ambassadeurs'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/blogs',
				text : 'Salle de Presse'
			}).inject(new Element('li').inject(content_include));
		}else if($('wa-defi') || $('wa-cercle')){
			new Element('a', {
				href : '/defi/municipalites',
				text : 'Défi des municipalités'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : 'http://www.vancouver2010.com/fr/plus-information-2010/%C3%A0-propos-du-covan/%C3%A0-nous-le-podium-2010/mitaines-rouges/',
				text : 'Mitaines rouges',
				'target' : '_blank'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/cercle',
				text : 'Cercle d’honneur'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : 'https://secure.olympicfoundation.ca/registrant/SelfSelect.aspx?EventID=29273&LangPref=en-CA',
				text : 'Collecte de fonds individuelle ou par équipe'
			}).inject(new Element('li').inject(content_include));
				/*
			new Element('a', {
				href : '/defi/link',
				text : 'Reliez vous à Nous'
			}).inject(new Element('li').inject(content_include));
		
			new Element('a', {
				href : '/defi/email',
				text : 'Envoyer un Courriel'
			}).inject(new Element('li').inject(content_include));
			*/
			new Element('a', {
				href : '/defi/banniere',
				text : 'Affichez une Bannière Publicitaire'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/defi/milieudetravail',
				text : 'Collecte de fonds en milieu de travail'
			}).inject(new Element('li').inject(content_include));			
			
		}else if($('wa-olympiens')){
			new Element('a', {
				href : '/olympiens/temoignages',
				text : 'Témoignages des athlètes'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/olympiens/ambassadeurs',
				text : 'Athlètes ambassadeurs'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/olympiens/video',
				text : 'Salle de vidéos'
			}).inject(new Element('li').inject(content_include));
		}else if($('wa-fonds')){
			new Element('a', {
				href : '/fonds/futur',
				text : 'Priorités de financement'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/fonds/osc',
				text : 'Organisation Sportive Canadienne d\'Hiver'
			}).inject(new Element('li').inject(content_include));
			
			new Element('a', {
				href : '/fonds/osct',
				text : 'Organisation Sportive Canadienne d\'été'
			}).inject(new Element('li').inject(content_include));
		}
		
		content_include.inject(subnav);
	}	
});