Snapper.ContentManager = {
	getContent: function (type) {
		switch (type) {
			case "cover":
				return {
					"title": "Cover",
					"contents": $("#buffer").html()
				};
			break;
			case "alt":
				return {
					"title": "",
					"contents": "<p><a href='mailto:vince@vinceallen.com' id='emailLink' class='email-link'>vince@vinceallen.com</a></p><p>Please contact me for any further information. Thanks!"
				};
			break;
			case "gitHub":
				return {
					"title": "GitHub",
					"contents": "If you'd like to view some code samples, check out my GitHub projects."
				};
			break;
			
			case "flickr":
				return {
					"title": "Flickr",
					"contents": "While I was Creative Director at Serious USA, we completed over 400 interactive projects. You can view screenshots from a selection of these on Flickr."
				};
			break;

			case "vimeo":
				return {
					"title": "Vimeo",
					"contents": "My reel features selections from interactive projects while I was Creative Director at Serious USA. Check out both DVD and Flash-based interfaces in action!"
				};
			break;
			
			case "linkedIn":
				return {
					"title": "LinkedIn",
					"contents": "Want to connect on LinkedIn? View my profile and send me a message."
				};
			break;			

			case "twitter":
				return {
					"title": "Twitter",
					"contents": "Do you use the Twitters? Follow me and I'll follow you back!"
				};
			break;

			case "clockstagram":
				return {
					"title": "Clockstagram",
					"contents": "Clockstagram is a simple app for iPhone and iPad that renders the current time using photos from Instagram's most popular feed. Download it from iTunes... it's free!"
				};
			break;		
															
			default:
				return false;
			break;
		}
	}
};
