var FAQQuestions = new Array();
FAQQuestions.push({Anch:"TimewallZoom",Title:"Can I zoom into the TimeWall?",Desc:"Yes, you can. There are 3 ways to zoom into a particular date. <ul><li><b>Method 1. By mousewheel (preferred method)</b> - Click on the TimeWall and rotate your mousewheel to zoom in or out of your desired date range. </li><li><b>Method 2. By Zoom Buttons</b> - Click on the '+' and '-' buttons to zoom in and out respectively. </li><li><b>Method 3. By Zoom Mover</b> - Drag and drop the round zoom mover onto the desired zoom level. </li></ul>"});
FAQQuestions.push({Anch:"WhatIsEvent",Title:"What is an event?",Desc:"An event is simply any past activity. It can be a holiday, first day of work, or even spotting a strange looking insect for the first time. It can also be an interesting conversation you had with your family, friends or someone you met on the streets."});
FAQQuestions.push({Anch:"SocialEvent",Title:"What is a social event?",Desc:"An event with at least 2 participants. "});
FAQQuestions.push({Anch:"EventsADay",Title:"How many events can I create for a date?",Desc:"You can write any number of events and share them with other participants. No more worries."});
FAQQuestions.push({Anch:"WritePastEvents",Title:"Can I write events that happen 8 years ago?",Desc:"Of course you can :). myTimeWall allows you to write events that go back to anytime in the past, beginning from today. You can write on the wonderful days that you have gone through with your wife, or the crazy days slogging for your unappreciative bosses, or even the birth of your child. You can even post photos of these events so that you can relive these moments in future whenever you want."});
FAQQuestions.push({Anch:"PrivacySettings",Title:"I am concerned about the privacy of my events.",Desc:"Protecting your privacy for life events is a key objective for us at myTimeWall. Most of us do not want strangers or even friends to view our most personal events. That's why we have created 4 levels of privacy settings for your events: <p/><ul><li>Everyone - Anyone who accesses your profile can see your content of this event.</li><li>Friends of friends - Only 2nd degree friends can see your content of this event.</li><li>Friends only - Only friends can see your content of this event.</li><li>Participants only - Only participants of this event can see your content of this event. If you are the only participant, then this event is private - seen only by you.</li></ul> <br /><b>Hmmm this seems a little complicated... </b>It is actually quite simple. This additional security ensures that your friend cannot view a 'participant only' event unless this friend is also a participant. <p />Still want to find out more? See <a href='EventPrivacy.php'>Event Privacy</a> for more details."});
FAQQuestions.push({Anch:"ParticipantsAndFriends",Title:"Hold on... Do you mean that participants are not friends?",Desc:"Yes, participants of an event are not necessarily your friends. Laura might be a participant of a Friday night party which you attended, but she is not exactly your friend. With this feature, you can add her as a participant of this event without worrying about any pressure to include her in your friend list."});
FAQQuestions.push({Anch:"WhyAddParticipants",Title:"But why add participants?",Desc:"Participants can give you a totally different perspective of the event. You may find the friday night party was out of the world, but not everyone feel the same way. Get them in to see how they feel. Be prepared for some surprises though. <p /> Plus if you invite the people who attended the event as participants, not only does it make it easier for you to connect with them, sharing information, photos and videos is now a piece of cake."});
FAQQuestions.push({Anch:"UserPublicUrl",Title:"What is the public link?",Desc:"Use it to showcase your or others' profile to non-myTimeWall users. Simply paste the link onto any internet website to invite your friends to the page.<p />Non-myTimeWall users can only view contents and events which privacy is set as Everyone.<p />Your profile's public link can be disabled <a href='EditProfile.php'>here</a>."});
FAQQuestions.push({Anch:"SeeLimitedEvents",Title:"What does 'You can see 10 out of her 30 events' mean?",Desc:"This means that you do not meet the individual privacy required of the 20 unseen events. That's why you cannot see them.  See <a href='EventPrivacy.php'>Event Privacy</a> for more details."});

FAQ = function(parent){	
	for(var i = 0;i < FAQQuestions.length;i++){
		var content = document.createElement('li');	
		parent.appendChild(content);		
		var title = new AnkhLink(FAQQuestions[i].Title);	
		title.className = "title";			
		title.id = title.name = FAQQuestions[i].Anch;		
		content.appendChild(title);
		var desc = document.createElement('div');
		desc.className = "desc";
		desc.innerHTML = FAQQuestions[i].Desc;
		content.appendChild(desc);			
	}	
};

