$(document).ready(function(){

	$(".imageThumb").hoverIntent(showPreviewer,hidePreviewer);
	$(".objThumbLI").hoverIntent(showPreviewer,hidePreviewer);
	function showPreviewer() {
		var divID = $(this).attr("id");
		var accessNo = $(this).attr("rel");
		$(this).parent().parent().prepend("<div id=\"woaIndexPreviewHover\" class=\"objThumb\"></div>");
		ajaxpage('/toah/content/ho/preview/ho_'+accessNo+'.htm', 'woaIndexPreviewHover');
		$("#woaIndexPreviewHover").fadeIn(100);
	}
	function hidePreviewer() {
		var divID = $(this).attr("id");
		$("#woaIndexPreviewHover").fadeOut(100);
		$("#woaIndexPreviewHover").remove();
	}

})