/********************************************************************************
slide panel
********************************************************************************/
$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panelshowprofile").slideDown("slow");
		return false;
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panelshowprofile").slideUp("normal");	
	});		
	
	// Switch buttons
	$("#panelshowprofilelink a").click(function () {
		$("#panelshowprofilelink a").toggle();
	});		
		
});

