The hover over affect is happening on my adbrite ads near the foot of the page. Is there any way I can stop this? Like block the javascript from seeing anything below the table? Heres the page where its happening.
http://www.plentyoftorrents.com/

Down near the footer.

Heres the .css for it also.

Code:
<style type="text/css">
 INPUT,SELECT,TEXTAREA{
background:white;
color: #006699;
}
.hideFromScreen {display:none;}

	A { text-decoration:none }
		a:link {
	color: #000000;

	}
    a:visited {
    color: #607ec5;

	}
a:hover {
	color: #3366FF;
	text-decoration: none;
	}
a:active {
	color: #99ccff;
	}
        table {
            text-align: left;
            font-size: 12px;
            font-family: book antiqua;
            background: #606060;
        }
        table thead {
            cursor: pointer;
        }
        table thead tr,
        table tfoot tr {
            background: url(images/tablemenu.png) repeat-x;

        }
        table tbody tr {
            background: #FFFFFF;
        }
				table tbody tr:hover {
				 background:	#F0F0F0;
				}

        td, th {
         border: 1px solid black;

        }
              th {
                 color:#ffffff;
                }
			</style>
Thanks.