function init_petco(){
	var petco_cnt = 0;
	$('#PERSONALIZATION_OPTIONS INPUT').each(function() {
		if ($(this).attr('type')=='undefined')
			return;
		if ($(this).attr('type')=='hidden')
			return;
		if ($(this).attr('type')=='file')
			return;
		petco_cnt++;
		
		$(this).attr('value', $('#OPT'+petco_cnt).text());
	});
}

//main jquery hook-up function
$(document).ready(
	function() {
		init_petco();
	}
);