$(document).ready(function() {
	
	// Homepage banner - category hovers
	$('#categoryHovers li').hover(function() {
		$(this).stop().animate({ top: '-110px' }, 300);
	}, function() {
		$(this).stop().animate({ top: '0px' }, 300);
	});
	
});
