$(document).ready(function() {
	
	//Image previews
	$(".thumbPreview").hover(
		function(){
			var hoverElem = $(this);
			var imagePreview = parseInt($(this).find("span").html());
			var pos = hoverElem.position();
			imagePreview = $("#preview-"+imagePreview);
			imagePreview.css("top",(pos.top)+"px").css("left",((pos.left-imagePreview.width())-10)+"px").show();
		},
		function(){
			var hoverElem = $(this);
			var imagePreview = parseInt($(this).find("span").html());
			imagePreview = $("#preview-"+imagePreview);
			imagePreview.hide();
		}
	);
	
});