You will either have to add an additional DIV
or add an additional SCRIPT
in document head. It's simpler with a DIV, because it will be there immediately without executing any script.
Example HTML (Version 1):
<body>
<div class="preview"></div>
...
</div>
Example HTML (Version 2):
<body>
<img class="preview" />
...
</div>
Example CSS:
.preview
{
position: absolute;
top: 0;
left: 0;
display: block;
z-index: 100;
/* omit all these if you use an IMG */
width: 100px; /* adjust */
height: 100px; /* adjust */
background-image: url(...); /* adjust */
background-repeat: no-repeat;
}