//JavaScript
$(document).ready(function(){
  //LOAD THE STUFF
  //update the querystring to force IE to reload the data
  $.get('/coursefinder-proxy?v=20120120', function(data) {
    $('#coursefinder').append($(data));
    $("#coursefinder .controls > li.ug").append($("#ughud"));
    $("#coursefinder .controls > li.pg").append($("#pghud"));
    $("#coursefinder .controls > li.res").append($("#reshud"));
    $('#cftemp').remove();
    $("#coursefinder .subjects a").click(function(e){
    e.preventDefault();
    var a = $(this).parents('li');
    a.find("p.init").hide('fast');
    a.find(".courses li").hide('slow');
    a.find(".courses li."+$(this).attr('class')).show('slow');
    });
  });
});


