$(function() {
	$('#hot-bands').dataTable( {
		"bProcessing": true,
		"bServerSide": true,
		"bSort": true,
		"oLanguage": {
			"sInfo": ""
		},
		"bFilter": false,
		"iDisplayLength" : "5",
		"aaSorting": [[ 2, "desc" ]],
		"bAutoWidth" : false, 
		"bLengthChange" : false,
		"bPaginate": false,
		"aoColumns": [
		{ bSortable:false, sWidth : "50px" },
			null,
			null
		],
		"sAjaxSource": "functions/bands-hot-bands-get-data.php"
	} );
	//alert("it's all over");
} );

$(document).ready(function() {
	$('#hot-venues').dataTable( {
		"bProcessing": true,
		"bServerSide": true,
		"iDisplayLength" : 5,
		"bSort": true,
		"oLanguage": {
			"sInfo": ""
		},
		"bFilter": false,
		"aaSorting": [[ 3, "desc" ]],
		"bAutoWidth" : false, 
		"bPaginate": false,
		"aoColumns": [
			{ bSortable:false, sWidth : "50px" },
			null,
			null,
			null
		],
		"sAjaxSource": "functions/venues-hot-venues-get-data.php"
	} );
	//alert("it's all over");
} );

$(document).ready(function() {
	$('#hot-shows').dataTable( {
		"bProcessing": true,
		"bServerSide": true,
		"iDisplayLength" : 5,
		"oLanguage": {
			"sInfo": ""
		},
		"bSort": true,
		"bFilter": false,
		"aaSorting": [[ 5, "desc" ]],
		"bAutoWidth" : false, 
		"bPaginate": false,
		"aoColumns": [
			{ bSortable:false, sWidth : "50px" },
			null,
			null,
			null,
			null,
			null
		],
		"sAjaxSource": "functions/shows-hot-shows-get-data.php"
	} );
	//alert("it's all over");
} );
