$(document).ready(function() {
	$('ul#categories a').imgPreview({
		containerID: 'imgPreviewWithStyles',
		srcAttr: 'rel',
		imgCSS: {
			height: 300
		},

		onshow: function(link){
			$('<span>' + link.text + '</span>').appendTo(this);
		},

		onhide: function(link){
			$('span', this).remove();
		}
	});
});