$(document).ready(function() {
	$("#itemList > .thumb").hover(
		function () {
			$(this).children('.hoverText').show();
			//$(this).children('.hoverText').effect("bounce", { times:3, mode:'show' }, 300);
		},
		function () {
			$(this).children('.hoverText').fadeOut();
		}
	);
});
