var GB_ANIMATION = true;
var wintitle = "Course Details"; 

$(document).ready(function() {
   $('a.readmore')
        .each(function() {
           this.href = this.href.replace('description.aspx?', 'descriptionMin.aspx?js=1&');
   });
   $("a.readmore").click(function() {
       var t = this.title || $(this).text() || this.href;
       GB_show(wintitle, this.href, 520, 800);
       return false;
   });
});







