	function listSplit(){
		var pList = $('pList'),  pItems = pList.getElements('li');
		var startPos = (((pItems.length+0.5)/2).round());
		pWrapper = new Element('div', {'class':'productWrapper'});
		cHack = new Element('div', {'class':'clearHack'});
		pWrapper.inject(pList, 'before');
		pList.inject(pWrapper, 'top');
		newPList = new Element('ul', {'class':'productList'});
		newPList.inject(pWrapper, 'bottom');
		for (var i = startPos; i < pItems.length; i++ ) {
			pItems[i].inject(newPList, 'bottom');
		}
		cHack.inject(pWrapper, 'bottom');
		
	}