
$(function() {
	
	$(".collectionbox").live('mouseenter',function() {

		$(".productname").text($(this).attr('product-title'));
		
		if ($(".productname").is(":hidden")) {
			
			$(".productname").fadeIn(250);
		
			
		}

	});
	
	$(document).bind('mousemove',function(e) {
		
		var mousex = e.pageX;
		var mousey = e.pageY;
		
		var box = $(".collectionbox")[0];		
	
		var offset = 50;
	
		var left = $(box).offset().left;
		var width = $(box).width();
		
		
		if (mousex > width+left+offset || mousex < left) {
			
			$(".productname").fadeOut(100);

			
		}
		
	});
	
});

