$(document).ready(function(){

	$('#content .container .eventcourse tr:not(.headers)').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});

	$('#content .container .eventcourse tr:not(.headers)').click(function(){
		var strHref=$(this).find('.name a').attr('href');

		if(strHref!=undefined){
			window.location=strHref;
		}
	});
});

