jQuery(document).ready(function(){
	jQuery(".products-grid .item").bind("mouseenter",function(){
		jQuery(this).children(".producthover").css("display","block");
		jQuery(this).children(".producthover").stop().animate({
			opacity: 1,
			filter:"alpha(opacity=100)"
		},300,function(){
			jQuery(this).children(".producthover").css("display","block");
		});
	}).bind("mouseleave",function(){
		jQuery(this).children(".producthover").stop().animate({
			opacity: 0,
			filter:"alpha(opacity=0)"
		},300,function(){
			jQuery(this).children(".producthover").css("display","none");
		});
	});
	
	jQuery(".products-grid .item").mousemove(function(e){
		var productoffset = jQuery(this).offset();
    	jQuery(this).children(".producthover").css({
    		top: e.pageY - productoffset.top + 20,
    		left: e.pageX - productoffset.left + 20
    	});
	});

});
