// The hover effects are based on this example: http://www.incg.nl/blog/2008/hover%2Dblock%2Djquery/
		$(function() {
			$('ul#home-choices li').hover(function(){
				$(this).find('img').animate({top:'152px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
			});
			/* Added the following to overcome a subtle problem with the way this works sith the new jQuery library. */
			$('ul#home-choices li').click(function(){
				$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
			});
		});
