//THUMBNAIL RollOver
$(function(){
	$('a.thumb').hover(
		function(){
			$(this).fadeTo(100, 0.7);//MouseOver
		},
		function(){
			$(this).fadeTo(300, 1.0);//MouseOut
		}
	);

//ItemList OTHER Item List
	$('.itemBox').hover(
		function(){
			$(this).addClass("hover");
			var other_thumbs = $(this).children("ul.otherThumb");
			var other_thumbs_height = $(this).height();

			$(this).children("ul.otherThumb").show();
//			$(this).children("ul.otherThumb").height(other_thumbs_height + 10);
			$(this).css("z-index","50");
			$(this).children("ul.otherThumb").css("z-index","80");
//			$(this).next().css("z-index","1");
		},
		function(){
			$(this).removeClass("hover");
			$(this).children("ul.otherThumb").hide();
			$(this).css("z-index","1");
		}
	);
});

