jQuery(document).ready(function() {
    if (jQuery('.coursebox .summary')){
        jQuery('.coursebox .summary').hide();
    }
    
	 jQuery('.coursebox').each(function (){
	     var info = jQuery(this).find('.summary');
        jQuery(this).find('.name').hover(function (){
            info.show();
        },function (){
           	info.hide();
        });        
    });
});
