$(document).ready(function() {
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "320px"
		})
		.animate({
			height: "320px"
		}, "fast");
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});


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



