$(function(){
	$('#content .item .zoomie').mouseover(function(){

		var div_wrap = $(this).next();
		var this_width = $(this).width()/2;
		var div_w = div_wrap.width()/2;
		var left = div_w - this_width;
		left = "-" + left;
		
		var this_height = $(this).height()/2;
		var div_h = div_wrap.height()/2;
		var top = div_h - this_height + 25;
		top = "-" + top;
		
		div_wrap.css("position","absolute").css("z-index","10").fadeIn();

	});
	$('.vspliv').mouseleave(function(){
			$(this).fadeOut();
		});
	
});
