Using jquery and on click slideup and slidedown

!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script> 
	$(document).ready(function()
	{
		$("#flip").click(function()
			{
			$("#panel").slideDown("slow");
			}	);
		
		
		
		$("#flip").hover(function()
		{
        $("#panel").slideUp("slow");
		});
		
		
	});
</script>
 
<style> 
#panel, 
#flip {
    padding: 5px;
    text-align: center;
    background-color: red;
    border: solid 1px #c3c3c3;
}

#panel {
    padding: 90px;
    display: none;
}
</style>
</head>
<body>
 
<div id="flip">Click to slide down panel</div>

<div id="panel">Muzaffar ALi Temoor Here</div>

</body>
</html>

Is this a question, or…?