this.imagePreview = function(){
	xOffset = 10;
	yOffset = 80;
	$("div.reviewpost").hover(function(e){
		$(this).next()
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px")
			.fadeIn("fast");
		},
		function(){
			$(this).next().fadeOut("fast");
		}
	);
	$("div.reviewpost").mousemove(function(e){
		$(this).next()
			.css("top",(e.pageY - yOffset) + "px")
			.css("left",(e.pageX + xOffset) + "px");
	});	
};

$(document).ready(function(){
	imagePreview();
});
