$(document).ready(function() {
	$('#PQDTList').dataTable({"bAutoWidth": false,"aaSorting": [[ 3, "desc" ]]
		//,"sPaginationType": "full_numbers"
		,"asStripClasses":['strip1','strip2']
		,"sDom":'<"wrapper"<"top"lf>t<"bottom"ip>>'
		,"aoColumns": [ 
			{ "sType": "html" },
			null,
			null,
			null,
			null
		]
		,"oLanguage": {
			"sLengthMenu": "Display _MENU_ records per page",
			"sZeroRecords": "Nothing found - sorry",
			"sInfo": "Showing _START_ to _END_ of _TOTAL_ records",
			"sInfoEmtpy": "Showing 0 to 0 of 0 records",
			"sInfoFiltered": "(filtered from _MAX_ total records)"
		}
	});
} );