function submitInfo(selectedObj)
{
	if(selectedObj == 'personalInfo')
	{
		document.getElementById('personalInfo').style.display = 'none';
		document.getElementById('jobInfo').style.display = '';
		document.getElementById('cvInfo').style.display = 'none';
	}
	else if(selectedObj == 'jobInfo')
	{
		document.getElementById('personalInfo').style.display = 'none';
		document.getElementById('jobInfo').style.display = 'none';
		document.getElementById('cvInfo').style.display = '';
	}
	else if(selectedObj == 'rootInfo')
	{
		document.getElementById('personalInfo').style.display = '';
		document.getElementById('jobInfo').style.display = 'none';
		document.getElementById('cvInfo').style.display = 'none';
	}
}

/*	$(function() {
		$('#passing').datepicker({
			showOn: 'button',
			buttonImage: 'images/calendar.png',
			buttonImageOnly: true,
			changeMonth: true,
			changeYear: true
		});
	});
	
	$(function() {
		$('#birthday').datepicker({
			showOn: 'button',
			buttonImage: 'images/calendar.png',
			buttonImageOnly: true,
			changeMonth: true,
			changeYear: true
		});
	});
*/