$(document).ready(function() {

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

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


$(function(){
   //menu principal
   $('div#encart-contact').hover(function() { //mouse in
   $('.dropdown').stop().animate({ height: '100px' }, 200);
   }, function() { //mouse out
    $('.dropdown').stop().animate({ height: '0' }, 300);
   });
   
});





