// JavaScript Document
$(document).ready(function() {
$('#patients-table').dataTable( {
		"aoColumns": [
			{ "sType": "title-string" },
			{ "sType": "title-string" },
			null,
			{ "sType": "title-numeric" },
			{ "sType": "title-numeric" }	
		],							   
		"sPaginationType": "full_numbers",
		"sDom": 'liftp',
		"oLanguage": {
			"sLengthMenu": "_MENU_ Eintr&auml;ge zeigen",
			"sZeroRecords": "Nichts gefunden",
			"sInfo": "Ergebnisse _START_ - _END_ von insgesamt _TOTAL_",
			"sInfoEmpty": "Showing 0 to 0 of 0 records",
			"sInfoFiltered": "",
			"sSearch": "",
			"oPaginate": {
				"sFirst":    "Erste Seite",
				"sPrevious": "Vorherige",
				"sNext":     "N&auml;chste",
				"sLast":     "Letzte Seite"
			},
		"bJQueryUI": true,
		}
	} );
} );

$(document).ready(function() {
$('#partner-table').dataTable( {
		"sPaginationType": "full_numbers",
		"sDom": 'liftp',		
		"oLanguage": {
			"sLengthMenu": "_MENU_ Eintr&auml;ge zeigen",
			"sZeroRecords": "Nichts gefunden",
			"sInfo": "Ergebnisse _START_ - _END_ von insgesamt _TOTAL_",
			"sInfoEmpty": "Showing 0 to 0 of 0 records",
			"sInfoFiltered": "",
			"sSearch": "",
			"oPaginate": {
				"sFirst":    "Erste Seite",
				"sPrevious": "Vorherige",
				"sNext":     "N&auml;chste",
				"sLast":     "Letzte Seite"
			},
		"bJQueryUI": true,			
		}
	} );
} );
