Desværre hjalp det ikke - du får lige hele koden her :)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="
http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<style type="text/css">
body {
margin: 0 auto;
padding: 0;
width: 1000px;
font: 120% Arial, Helvetica, sans-serif;
}
a{
font: bold 75% Arial, Helvetica, sans-serif !important;
outline: none;
}
#slide_panel {
background: #a0a09f;
height: 150px;
display: none;
}
.slide_div {
margin: 0;
padding: 0 35px 0 0;
background: url(images/slide_btn.jpg) no-repeat center top;
float:right;
}
.slide_button {
background: url(images/plus_minus_icon.gif) no-repeat right 5px;
text-align: center;
width: 154px;
height: 32px;
padding: 8px 5px 0 0;
display: block;
color: #fff;
text-decoration: none;
}
.minus_icon {
background-position: right -33px;
}
#menuheader{
background-color:#CCCCCC;
text-align:center;
padding:10px 0px;
}
#header{
border-top: solid 2px #343333;
background:url(images/bg.jpg) #CCCCCC repeat-x top;
height:90px;
}
#body_area{
height:200px;
background-color:#CCCCCC;
}
ul{margin:0px; padding:0px;}
ul li{display:inline; margin:20px;}
ul li a{font: 110% Arial, Helvetica, sans-serif !important; text-decoration:none; color:#000000; }
ul li a:hover{text-decoration:underline;}
#thumbimages {
background-color:#595353;
border:1px solid #817D7D;
float:left;
margin-left:200px;
margin-top:20px;
padding:10px;
width:560px;
}
.req_img {
border: 1px solid #817d7d;
margin-left: 12px;
}
.img {
border: 1px solid #817d7d;
margin-left: 12px;
}
</style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".slide_button").click(function(){
$("#slide_panel").slideToggle("slow");
$(this).toggleClass("minus_icon"); return false;
});
});
$(".slide_button").show();
</script>
</head>
<body>
<div id="slide_panel">
INDHOLD KOMMER HER
</div>
<div id="header">
<div class="slide_div"><a href="#" class="slide_button">Klik her</a></div>
</div>
</body>
</html>