I'm building a working mockup of a site design and I want the ad spaces to disappear to illustrate what the page would look like if they're empty. Can I accomplish this without having the uniquely identify each space? I was hoping this would work:
<script type="text/javascript">
$('.adSpace').click(function() {
$this.toggle('fast');
});
</script>