/**
 * @author kchanto
 animate({opacity: "hide", top: "-100"})
*/
$(document).ready(function(){
	$(".product a").hover(function() {
		if($(this).next("span").hasClass("left")){
			$(this).parent().css("zIndex", "10");
		}
		$(this).next("span").stop(true, true).slideDown("slow");
	}, function() {
		if($(this).next("span").hasClass("left")){
			$(this).parent().css("zIndex", "2");
		}
		$(this).next("span").slideUp("fast");
	});

});
