$(document).ready(function(){
	$(".SlideBox").hover(
		function(){
			//numTxtHeight=$("div:eq(1) div",this).height() +16;
			$("div:eq(2)",this).css("z-index","10");
		},
		function(){
			$("div:eq(2)",this).css("z-index","0");
		}
	);
});

