/**
 * THE LinkPanel.java WRITEME...
 */
package com.tootsville.tootsbook.client.panel;

import com.google.gwt.user.client.ui.Anchor;
import com.google.gwt.user.client.ui.VerticalPanel;

/**
 * WRITEME: Document this type. twheys@gmail.com Jan 15, 2010
 * 
 * @author <a href="mailto:twheys@gmail.com@resinteractive.com">Tim
 *         Heys</a>
 * 
 */
public class LinkPanel extends VerticalPanel {

	/**
	 * 
	 */
	private final Anchor links[] = {
			new Anchor ("Play Now",
					"http://www.tootsville.com/playnow.html", "_blank"),
			new Anchor ("TootsBook Store", "#store"),
			new Anchor (
					"Tootsville News",
					"http://www.tootsville.com/web/tootsville-news-for-kids/",
					"_blank"),
			new Anchor ("Tootsville Shop",
					"https://members.tootsville.com/shop", "_blank"),
			new Anchor ("Contests",
					"http://www.tootsville.com/web/contests-for-kids/",
					"_blank"),
			new Anchor (
					"Recipes",
					"http://www.tootsville.com/web/kids-recipes/kid-recipe-of-the-month.html",
					"_blank"),
			new Anchor (
					"Activity Center",
					"http://www.tootsville.com/web/fun-activities-for-kids/",
					"_blank"),
			new Anchor (
					"Fun Facts & Jokes",
					"http://www.tootsville.com/web/fun-facts-and-jokes/index.html",
					"_blank"),
			new Anchor ("Arts And Crafts",
					"http://www.tootsville.com/web/crafts-for-kids/",
					"_blank"),
			new Anchor ("Audio Books",
					"http://www.tootsville.com/web/kids-audio-books/",
					"_blank"),
			new Anchor (
					"Work Out Tips",
					"http://www.tootsville.com/web/fun-excercises-for-kids/",
					"_blank"),
			new Anchor ("Game Of The Month",
					"http://www.tootsville.com/web/game-of-the-month/",
					"_blank") };

	/**
	 * <pre>
	 * twheys@gmail.com Jan 15, 2010
	 * </pre>
	 * 
	 * A LinkPanel WRITEME...
	 * 
	 */
	public LinkPanel () {
		setSpacing (5);
		for (final Anchor link : links) {
			link.setStyleName ("home-page-links-sidebar comment-bg-color primary-text");
			add (link);
		}
	}
}
