/**
 * THE Advertisement.java WRITEME...
 */
package com.tootsville.tootsbook.client.util;

import com.google.gwt.user.client.ui.Anchor;
import com.google.gwt.user.client.ui.Image;
import com.google.gwt.user.client.ui.SimplePanel;

/**
 * WRITEME: Document this type. twheys@gmail.com Jan 5, 2010
 * 
 * @author <a href="mailto:twheys@gmail.com@resinteractive.com">Tim
 *         Heys</a>
 * 
 */
public class Advertisement extends SimplePanel {
	/**
	 * 
	 */
	Image adBanner = new Image (
			"/tootbook-resource/advertisement/ad.png");

	/**
	 * <pre>
	 * twheys@gmail.com Jan 5, 2010
	 * </pre>
	 * 
	 * A Advertisement WRITEME...
	 * 
	 */
	public Advertisement () {
		super ();
		final Anchor aWrap = new Anchor ("",
				"http://tootsville.com/playnow.html", "_blank");
		aWrap.getElement ().appendChild (adBanner.getElement ());
		setWidget (aWrap);
	}
}
