jquery toggle not working
Can someone please tell me where I'm going wrong here? I'm very new at this, but I'm willing to learn. I would like my site to have a custom button that, when clicked, reveals an image. I would like the button to toggle the image to show/hide.
Thanks in advance.
<div class="button">CLICK HERE TO COMPARE US TO THE COMPETITION</div>
<style type="text/css">
.button {
background-color:#2b84b0;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #2b84b0;
display:inline-block;
color:#ffffff;
font-family:arial;
font-size:18px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
}.button:hover {
background-color:#2b84b0;
color:#ffffff;
}.button:active {
position:relative;
top:1px;
color:#ffffff;
}
</style>