$(document).ready(function () {

	$('.thumbnail-item').mouseenter(function(e) {

		x = e.pageX;
		y = e.pageY;
    
    var img = "<img src='http://www.justfloors.ie/" + $(this).find(".tiptip").attr("src") + "'/>";

		$(this).css('z-index','15')
		$(this).css('background', '#800000')
		$(this).css('color', '#ffffff')
		$(this).css('cursor', 'default')
		
    $('#tiptip-prev').css({'top': y + 20,'left': x + 20,'display':'block'});
    $('#tiptip-prev').append(img);
			
	}).mousemove(function(e) {

		x = e.pageX;
		y = e.pageY;
			
		
		$('#tiptip-prev').css({'top': y + 20,'left': x + 20,'display':'block'});
			
	}).mouseleave(function() {
			
		$(this).css('z-index','1')
		$(this).css('background', 'none')
		$(this).css('color', '#000000')
		$('#tiptip-prev img').remove();		
	});

});
