/**
 * @author Dave
 */
$(document).ready(function(){
	$("#all-tickets-table").tablesorter( {
		dateFormat: 'uk',
		cssDesc: 'ui-arrow-down-default',
		cssAsc: 'ui-arrow-up-default',
		headers: { 2: { sorter: 'shortDate'}, 4: { sorter: false} }
	});
	$("#hd-logo").bind('click', function() {
		if ( club ) {
			window.location.href = '/clubtickets.php';						
		} else {
			window.location.href = '/';						
		}
	});
});