$(document).ready(function(){
$("table.recent_videos tr:even").addClass("alt");

$("table.recent_videos tr[link]").bind("click", function(){
		var link = $(this).attr("link");
		window.location.href = link;
	});

$(".recent_videos tr[link]").mouseover(function() {
		$(this).addClass("hover");}).mouseout(function() {$(this).removeClass("hover");
	});
});


$(function() {

$('.recent_videos td').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	showBody: " - ",
	extraClass: "blue",
	fixPNG: true,
	opacity: 0.95,
	opacity: 0.95,
	right: 20,
	top: -20
});
});


