Need to click on div and show the panel

Need to click on div and show the panel

Hi

Need help on this one. I want to click on the box and then show a panel kind. But i am getting both divs. I am not able to get slidedown functionality.Please help.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>pal.html</title>
<meta name="generator" content="BBEdit 16.0" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />    
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>    
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
<script>
$(document).on('expand', '.ui-collapsible', function() {
$(this).children().next().hide();
    $(this).children().next().slideDown();
   
});
</script>
<style>
div.static{
width:348px;
height:196px;
border: 1px solid black;
}
div img{
    display:inline-block;
}
div ul{
display:inline-block;
}
</style>
</head>
<body>
<div data-role="page">
    <div data-role="content">
        <div data-role="collapsible" id="my-collapsible">
<div class="static" id="click">
<div>
<img src="Diamond Round.gif" alt="Diamond Round.gif" width="48" height="48"/>
<ul>
<li>Text1</li>
<li>Text2</li>
<li>Text3</li>
</ul>
<div>
</div>
<div id="slidedown" class="static">
<div>
<img src="Diamond Round.gif" alt="Diamond Round.gif" width="48" height="48"/>
<ul>
<li>Text1</li>
<li>Text2</li>
<li>Text3</li>
</ul>
<div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>