$(document).ready(function() {
	
	// Expand Panel
	/*$("#openClient").live('click',function(){
		$("div#panelClient").slideDown("slow");
		$("#client").html("<a id='closeClient' href='#'>CLOSE</a>");
		$("div#panelEmp").slideUp("slow");	
		$("#emp").html("<a id='openEmp' href='#'>EMPLOYEE LOGIN</a>")
	
	});	
	
	// Collapse Panel
	$("#closeClient").live('click',function(){
		$("div#panelClient").slideUp("slow");	
		$("#client").html("<a id='openClient' href='#'>CLIENT PORTAL</a>")
	});	
	
	// Expand Panel
	$("#openEmp").live('click',function(){
		$("div#panelEmp").slideDown("slow");
		$("#emp").html("<a id='closeEmp' href='#'>CLOSE</a>");
		$("div#panelClient").slideUp("slow");	
		$("#client").html("<a id='openClient' href='#'>CLIENT PORTAL</a>")
	
	});	
	
	// Collapse Panel
	$("#closeEmp").live('click',function(){
		$("div#panelEmp").slideUp("slow");	
		$("#emp").html("<a id='openEmp' href='#'>EMPLOYEE LOGIN</a>")
	});	*/
	
	
		
});
