U can work without thumbnails.
for sketches
<img src="http://example.com/img1.jpg" class="compress"/>
When you hover over it shows
$(".compress").hover(function(){ $(".image").show(); });
full image
<img src="http://example.com/img1.jpg" class="image"/>
CSS
.compress{ width:20%; } .image{ display:none; position:absolute; }
its not full, but I think it can help
source share