/**
 * Hyperlinks the whole list entry on the service landing pages
 * 
 * @copyright Scribendi Inc.
 * @author Dave Redfern
 * @requires Prototype 1.6
 */
document.observe('dom:loaded', function(event){
	$$('div.displayBox ul li').each(function(object){
		object.addClassName('liLink');
		object.observe('click', function(event){
			ele = event.findElement('li');
			link = ele.down('a');
			if ( link ) {
				location.href = link.href;
			}
		});
	});
});