$(document).ready(function() {
    $('body.company-education-useyourloaf #PrimaryContent li a').attr("title","Link opens a new browser window");
    $('body.company-education-useyourloaf #PrimaryContent li a').click(function(){
        window.open(this.href);
        return false;
    });

    $('#CaseStudies h3').click(function(){
        $(this).next('.content').slideToggle("slow");
        $(this).toggleClass('active');
        $(this).find('a').toggleClass('closed-link');
        return false;
    });
    
});