$(function(){
	$(".galleryBox").each(function(){
		var cache = {};
		var thisID = $(this).attr("id");
		var tipElement =  $(this).find("div.info");
		var anchor =  $(this).find("a.thumb");
		
		
		var fx = {
			over: function (target) {target.fadeIn(100)},
			 out: function (target) {target.fadeOut(200)}
		}
		var overHandler = function(){
			if (!cache[thisID])
			{
				cache[thisID] = tipElement;
				


				//ID‚Å•ªŠò
				//450x450
				if( thisID == "pos10") {
					tipElement.css({
						left: tipElement.width() - 170 + 140,
						top: - tipElement.height() - 15
					});
					
				//295x295
				} else if( (thisID == "pos1") || (thisID == "pos9") || (thisID == "pos15") || (thisID == "pos18") ) {
					tipElement.css({
						left: tipElement.width() - 170 + 62,
						top: - tipElement.height() - 15
					});
				//140x140
				} else {
					tipElement.css({
						left: tipElement.width() - 170 - 15,
						top: - tipElement.height() - 15
					});
				}

				
			}
			fx.over(tipElement);
		}
		
		var outHandler = function() {
			fx.out(tipElement);
		}
		
		anchor.hover(overHandler, outHandler);
		
	});

});
