$(document).ready(function(){

   $('td.event').each(function()
   {
      $(this).qtip({
         content: $(this).find("ul").html(),
         style: 'dark'
      });


		$(this).click(function(){
			window.location = ('http://www.rethinkreddeer.ca' + $(this).find("strong a").attr('href'));		
		});

      
   });
	
});


function closeit()
{
	$('#calinfo').fadeOut("fast");
}