// Just Arrived
$(function(){
	$("#ja-products li a").hover(
		function(e){
			$(this).find("span").hoverFlow(e.type,{bottom:"0px"},"fast");
		}, function(e){
			$(this).find("span").hoverFlow(e.type,{bottom:"-100px"},"fast");
		}
	);
});
