// JavaScript Document
$(document).ready(function(){
$('ul#pictip a').imgPreview({
containerID: 'imgPreviewWithStyles',
/* Change srcAttr to rel: */
srcAttr: 'rel',
imgCSS: {
// Limit preview size:
height: 300},
// When container hides: 
onHide: function(link){
$('span', this).remove();
}
});
});
