// Make LInks out of A HREFS

$(document).ready(function(){						   
$("#course_descriptions a").removeAttr("href");
 
$("#course_descriptions a").each(function(){
$(this).qtip({content:{
url: 'course_query.php',
data: {course: this.innerHTML},
method: 'get'
}});
});


});




