/**
 * @glintwine
 */
$(document).ready(function(){

	$(".rollpic").hover(function() {
		$(this).next(".smallcolor").animate({opacity: "show", top: "-35"}, "slow");
	}, function() {
		$(this).next(".smallcolor").animate({opacity: "hide", top: "-45"}, "fast");
	});


});
