$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
	    $('#forgotformbox').hide();
        $('#forgotformboxmsg').hide();
    	$('#loginformbox').show();
    	$('#formregisboxmsg').hide();
    	$('#formregisbox').show();
    	$('#formcontactbox').hide();
    	$('#formcontactboxmsg').hide();
    	$('#topcontetnbox').show();

		$("div#panel").slideDown("slow");
	});	
	
	// Collapse Panel
	$("#close").click(function(){
	    $('#forgotformbox').hide();
        $('#forgotformboxmsg').hide();
    	$('#loginformbox').show();
    	$('#formregisboxmsg').hide();
    	$('#formregisbox').show();
    	$('#formcontactbox').hide();
    	$('#formcontactboxmsg').hide();
    	$('#topcontetnbox').show();
    
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
