$(document).ready(function() {
    $('.yui-u.first div.App_Cms_Box_TextBox, \
       .yui-u.first div.XTZend_Cms_Box_ReviewBox, \
       .yui-u.first div.XTZend_Cms_Box_ScrollList').each(function() {
            var url ='';
       		var title = ''; 
            if ($(this).hasClass('App_Cms_Box_TextBox')) {
                url = '/page/case-studies';
                title = 'Case Studies';
                $(this).css('margin-bottom','0px');
            } else if ($(this).hasClass('XTZend_Cms_Box_ReviewBox')) {
                url = '/page/testimonials';
                title = 'Testimonials';
            } else if  ($(this).hasClass('XTZend_Cms_Box_ScrollList') && !$(this).hasClass('cms-o1')) {
                url = '/page/schools-that-we-have-worked-with';
                title = 'Schools we have worked with';
            }
            if (url) {
                $(this).wrap('<a href="' + url + '" style="text-decoration: none;" title="' + title + '"></a>');
            }
            
    })
});


