<html>
<head>
<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p:first").addClass("intro note");
});
</script>
<style type="text/css">
.intro
{
font-size:120%;
color:blue;
}
.note
background-color:yellow;
</style>
</head>
<body>