/*PANEL FOR SERVICES*/
$(document).ready(function() {
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "304px"
		})
		.animate({
			height: "304px"
		}, "fast");
		$("div.panel_button").toggle();

	});

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


   });
});