
// Add zebra stripes, hover, and onclick to table
$j(document).ready(function(){
	//JQuery ready is quicker than onload
	$j(".domainTable tr").mouseover(function() {$j(this).addClass("over");}).mouseout(function() {$j(this).removeClass("over");});
	$j(".domainTable tr:even").addClass("alt");
	$j(".domainTable tr").click(function() {
		link = $j(this).find("td a").attr("href");
		if(link != null) {
			window.location = link;
		}
	});
});
