$(document).ready(function() {
$("div.panel_button").click(function(){
$(this).fadeOut(800);
$("div#panel").animate({
height: "320px"
}, 1200, function () {
$("div#hide_button").fadeIn();
});
}); 
$("div#hide_button").click(function(){
$("div#panel").fadeOut(1200);
setTimeout(function () {
$("div.panel_button").fadeIn(1200);
}, 1500);
});
});

$(document).ready(function () {
 $('object').append('<param name="wmode" value="transparent" />');
 $('object').find('embed').attr('wmode', 'transparent');	
});



