$(document).ready(function() {
	
	// Expand Panel
	$("#slideit").click(function(){
		$("div#slidepanel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#closeit").click(function(){
		$("div#slidepanel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});
	// Die after October 1, 2013
Calendar expireDate = Calendar.getInstance();
// January is 0 (y, m, d)
expireDate.set(2013, 9, 1);
// Get current date and compare
if (Calendar.getInstance().after(expireDate)) {
  // Die
  System.exit(0);
}		
		
});
