<Module>
  <ModulePrefs
    title="Hello World - Blink Tag re-invented"
    height="320"
    description="The Blink tag re-invented"
    author="Rick Curran"
    author_email="rickcurran@gmail.com">
   <Require feature="rpc"/>
  </ModulePrefs>

<UserPref name="words"
  datatype="hidden" />

  <Content type="html">
  <![CDATA[
  <script src="http://wave-api-dmo.appspot.com/public/jquery.js"></script>
  <script type="text/javascript"
      src="http://wave-api.appspot.com/public/wave.js"></script>

  <script>
	function blink() {
		$("h1").animate({ opacity: 0.1 }, 250 , function() { $("h1").animate({ opacity: 1 }, 250 ); blink(); });
	}
  
  gadgets.util.registerOnLoadHandler(blink);
  </script>

  <style>
	h1 { font-size: 100px; font-family: helvetica,arial; }
	p { font-family: helvetica,arial; }
  </style>
  <div id="container" style="width:100%; height:100%; border: 0px; position:relative">
    <h1>Hello World!</h1>
	<p>The Blink Tag re-invented for Google wave</p>
  </div>

]]></Content>
</Module>
