var reportcomments = {
	title: 'Report Comments',
	id: 'reportcomments-panel',
	layout: 'fit',
	hideMode: 'offsets',
	tbar: ['Course: ',
	{
		xtype: 'combo',
		width: 150
	},
	{
		xtype: 'tbspacer',
		width: 10
	}, 'Grade Period: ',
	{
		xtype: 'combo',
		width: 50
	},
	{
		xtype: 'tbspacer',
		width: 10
	},
	{
		xtype: 'tbseparator'
	},
	{
		xtype: 'tbspacer',
		width: 10
	}, 'Report Type: ',
	{
		xtype: 'combo',
		width: 150
	}],
	items: [{
		xtype: 'panel',
		layout: 'column',
		bodyStyle: 'padding-bottom: 65px;',
		defaults: {
			bodyStyle: 'height: 100%',
			style: {
				margin: 15
			},
			columnWidth: .5
		},
		border: false,
		items: [
		new reportCommentsRosterGrid(),
		{
			xtype: 'panel',
			border: false,
			columnWidth: 0,
			width: 70
		},
		new reportCommentsGrid()]
	}]
};

