// Thumbnail Icons Hover START

	$(function() {
		$(".Thumbnails span").css("opacity","0");
		$(".Thumbnails span").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "fast");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "fast");
		});
	});

// Thumbnail Icons Hover END
