$(function(){
	$(".colz").hover(
		function(){
			var epos = $(this).offset();
			var etid = $(this).attr("class").replace(/.+show_(\w+).*/,"$1")
			$(".colz_image#"+etid).css({
				"left" : epos.left+"px",
				"top" : epos.top+"px"
			}).fadeIn('fast')
		},null
	);

	$(".colz_image").hover(null,function(){
		$(this).fadeOut('fast')
	})

})

