pengag.parsePengComponents = function()
{
	$('div.pengConfig').each(
	function (i) 
	{
		if($(this).attr("id")=="")
		{
			$(this).attr("id","pengPlugin"+i);
		}
		pengag["v"+$('div.majorVersion', this).text()+$('div.minorVersion', this).text()]["C" + $('div.package', this).text()].loadFromPengConfig(this);
    });
}

$(document).ready(function(){pengag.parsePengComponents();});