	$(document).ready(function(){
				var loc=window.location.href;
						$("#li_view_thumb").after("<br><div id='loadDiv'>Loader</div>");
						var loader= $(".breadcrumbLink:last").attr("href") + " .productsTable1";
						$("#loadDiv").hide().after("<div id='minilist'><h3>" + headtext + "</h3></div>");
						$("#loadDiv").load(loader, {limit: 25}, function(){
						$(".productsTable2 a").each(function(){
							$(this).clone().appendTo("#minilist");
					    	 });
						$(".productTitleLink").each(function(){
							$(this).hide();
					    	 });
						$(".productNumColorsLink").each(function(){
							$(this).hide();
					    	 });
						$(".productImage").each(function(){
							$(this).height(newsize);
							$(this).width(newsize);
					    	 });
						});
						$("#li_view_thumb").css("text-align", "center");
	});