$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		if ($('.fadeee').length > 0)
		{
			$('.fadeee').innerfade({
				speed: 2000,
				timeout: 10000,
				type: 'sequence',
				containerheight: '1.5em'
			});
		}
		$("div#panel").slideDown("slow");
		CSBfleXcroll('mycustomscroll');
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
		if(typeof(t) != "undefined")
		    clearTimeout(t);
	});		
		
});