$(document).ready(function(){

// var mXRefLinkHref;
 
 var mXRefLink = $('#leftSide a');
 var count = 0;
 
  mXRefLink.bind('click',function()
  {
	  
		if(count == 0)
    {	 																 
   	  $(this).find(":nth-child(1)").animate({ 'width':'407px', 'height':'283px'}, 1200);
  	  $(this).parent().css({'z-index':'106'});
  	  count++;
		  if(!$(this).attr('class') || $(this).attr('class')!='map')
			{			
 		    mXRefLinkHref = $(this).attr('href');
 		    $(this).parent().append('<p class="refLink">Diese Seite finden Sie unter <a href="'+mXRefLinkHref+'" rel="external">'+mXRefLinkHref+'</a></p>');
			}
		  else
		  {
			  mXRefLinkHref = "";
			}
  	  return false;
    }
		else
    {
   	  $(this).find(":nth-child(1)").animate({ width: '101px', height: '70px'}, 1200);
  	  $(this).parent().css({'z-index':'1'});
  	  count = 0;		
  	  $('.refLink').remove();
  	  return false;			
    }
  });

 
});
