//<![CDATA[
   // When the page is ready
   $(document).ready(function(){
       $("p.surprise").hide();
       $("p.surprise").css({background:"yellow", border:"3px red solid", padding: "5px"})
       $("input[@type=text]").click(function(){
           $("p.surprise").show("slow");
       });
   });
//]]>
