My First jQuery Plugin

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	<title>My First jQuery Plugin</title>
 
	<script
		type="text/javascript"
		src="jquery-latest.pack.js">
	</script>
	<script
		type="text/javascript"
		src="jquery.scared.js">
	</script>
	<script type="text/javascript">
 
		// When the document is ready for interation,
		// initialize the buttons to make them scared.
		$(
			function(){
				// Apply the scared plugin to all the
				// matching elements in the returned
				// jQuery stack object.
				$( "input[@type='button']" ).scared();
			}
			);
 
	</script>
</head>
<body>
 
	<h1>
		My First jQuery Plugin
	</h1>
 
	<p>
		Hey, try to click on the following buttons (you know you want to):
	</p>
 
	<p>
		<input type="button" value="Click Me!" />
		<input type="button" value="Touch Me!" />
		<input type="button" value="Grope Me!" />
		<input type="button" value="Fondle Me!" />
		<input type="button" value="Caress Me!" />
	</p>
 
</body>
</html>

For Cut-and-Paste