jQuery.noConflict();
jQuery(function($){
				var para = location.search;
				if(para.indexOf("shopid=") > 0){
					$('script').not('disp').remove();
					$('head').html('');
					$('#head, #products-list, #box-support, #foot01').remove();
					var specHtml = "";
					$('#column-left div.outer').each(function(){
															  specHtml = specHtml + $(this).html();
															  });
					$('#mainBody').html(specHtml);
					var usrAgt = $.browser;
					var imgsrcUrl = 'http://www.iodata.jp';
					$('img').each(function(){
										   var imgsrcOrg = $(this).attr('src');
										   if(usrAgt.msie){
											   $(this).attr('src',imgsrcOrg);
											   }
											   else{
												   $(this).attr('src',imgsrcUrl+imgsrcOrg);
												   }
										   });
					}});
