/*
	Secure Parking
	
	Copyright Hothouse Interactive :: www.hothouse.com.au
	Unauthorised modification / use is a criminal offence, and will be prosecuted the fullest extent permitted by law.
	
	All Rights Reserved 
	These Scripts requires the jQuery library to run http://jquery.com
*/

$(document).ready(function() {
	
	// Sidepanel toggle function
	$("#accordion").accordion({
		autoheight: false
	});
	// remove height: 0
	$("div.clubSecure-table-a").css("height", "auto");
	
	// Table-a alternate rows
	$(".table-a tr:even").addClass("alternate");

});