/**
 * Hyperlinks the whole list entry on the service landing pages
 * 
 * @copyright Scribendi Inc.
 * @author Dave Redfern
 * @requires Prototype 1.7
 */
document.observe('dom:loaded', function(){
$$('div.displayBox ul')[0].addClassName('liLink').on('click','li',function(c,l){try {location.href=l.down('a').href;c.stop();} catch(f){}});
$$('.liLink li').each(function(l){l.title=l.down('a').title;});
});

