jq = jQuery.noConflict();

jq(document).ready(function()
{
   var courses = jq("#courses");
   if(courses.length > 0)
   {
       courses.find(".tablecell td").hover(
           function()
           {
               jq("#courseinfo").show();    
           },
           function()
           {
               jq("#courseinfo").hide();
           }
       );
   }
});
