$(document).ready(function(){
		Tanca();
		$("#meerkat").click(function() 
		{
		   if(EstatPeu == "tancat")
		   {
			  Obre();
			  EstatPeu = "obert";
			}
			else
			{
				EstatPeu = "tancat";
				Tanca();
			
			}
	
		});						
/****************************************************************************************************/
var EstatPeu = "tancat";
function Obre()
{
	$("#dades").show();	
	meerkat({
				  showMeerkatOnLoad: 'false',
				  close: 'none',
				  dontShow: 'yes',
				  dontShowExpire: 0,
				  removeCookie: 'none',
				  meerkatPosition: 'bottom',
				  animation: 'slide',
				  animationSpeed: 'slow',
				  height: '200px',
				  background: 'none'
			});			
}

function Tanca()
{
	$("#dades").hide();	
	meerkat({
				  showMeerkatOnLoad: 'false',
				  close: '.Objecte',
				  dontShow: 'true',
				  dontShowExpire: 0,
				  removeCookie: 'none',
				  meerkatPosition: 'bottom',
				  animation: 'slide',
				  animationSpeed: 'slow',
				  height: '30px',
				  background: 'none'
			});
}



});

