lastlayer = "";

function showmobileinfo(mode,id)
  {

//   $("#progprevdetails").opacity(0);
   $("#progprevdetails").height(1);
   $("#progprevdetails").width(1);

   $docwidth = $(document).width();
   $docheight = $(document).height();

   var url = 'ajax.php?mode=showmobilkonzert&konzertid='+id;
   $.ajax({
   type: "GET",
   url: url,
   dataType: "html",
   success: function(html)
      {
       $('#progprevdetails').empty().append(html);
       $("#progprevdetails").animate({opacity: 1, width:$docwidth, height: $docheight}, 500);
      }
  });
 //  $("#progprevdetails").height($docheight).width($docwidth);

}


function closemobileinfo()
  {
   $("#progprevdetails").fadeOut(1500);
  }


function shownews(aid,num)
  {
   var $navi = '#newsscroll a #shownews'+selnum ;
   $($navi).css('color','#A4A4A4');
   selnum = num;

   $navi = '#newsscroll a #shownews'+num;
   $($navi).css('color','#CD5A5B');

   var url = 'ajax.php?mode=shownews&aid='+aid+'&num='+num;
   $.ajax({
   type: "GET",
   url: url,
   dataType: "html",
   success: function(html)
   {$('#newsartikel').empty().append(html);
   scrollartikel();
   }
   });
  }
