$(document).ready(function(){
	$('.play').each(function(){
		var file = $(this).attr("id");
		$(this).jmp3({
				filepath: file,
				showfilename: "false",
				backcolor: "003366",
				forecolor: "FFFFFF",
				width: 100,
				showdownload: "true"
		});
	});
	$('#dataTable>tbody>tr:even').addClass('even');
	$('#dataTable>tbody>tr:odd').addClass('odd');
	$('.audio').dataTable({
		"aaSorting":[[2,'desc'],[0,'asc']],
		"aoColumns":[
					 null,
					 { "bVisible": true },
					 null,
					 { "bSortable": false },
					 { "bSortable": false,
					   "bVisible":  false},
					 { "bSortable": false}
					 ]
	});
	$('.audio_asc').dataTable({
		"aaSorting":[[2,'asc'],[0,'asc']],
		"aoColumns":[
					 null,
					 { "bVisible": true },
					 null,
					 { "bSortable": false },
					 { "bSortable": false,
					   "bVisible":  false},
					 { "bSortable": false}
					 ]
	});
	$('.audio_by_name').dataTable({
		"aaSorting":[[0,'asc']],
		"aoColumns":[
					 null,
					 { "bVisible": true },
					 null,
					 { "bSortable": false },
					 { "bSortable": false,
					   "bVisible":  false},
					 { "bSortable": false}
					 ]
	});
	$('.video').dataTable({
		"aaSorting":[[2,'desc'],[0,'asc']],
		"aoColumns":[
					 null,
					 { "bVisible": true },
					 null,
					 { "bSortable": false },
					 { "bSortable": false,
					   "bVisible":  false},
					 { "bSortable": false}
					 ]
	});
	$('.video_asc').dataTable({
		"aaSorting":[[2,'asc'],[0,'asc']],
		"aoColumns":[
					 null,
					 { "bVisible": true },
					 null,
					 { "bSortable": false },
					 { "bSortable": false,
					   "bVisible":  false},
					 { "bSortable": false}
					 ]
	});
	$('.infodoc').dataTable({
		"aaSorting":[[1,'desc'],[0,'asc']],
		"aoColumns":[
					 null,
					 null,
					 { "bSortable": false },
					 { "bSortable": false}
					 ]
	});
	$('.dtable').dataTable();
});
