
$(document).ready(function(){
  $("span.open-detail").mousedown(function(){
    var Id = 'detail-koncert-' + $(this).attr('id');
    
    if( $(this).html() == 'detail' ){
      $(".open-detail").html("detail"); $(".popis").fadeOut();
      $(this).html("zavřít"); $('#'+Id).fadeIn();
    }else{
      $(this).html("detail"); $('#'+Id).fadeOut();
    }
    
    $(Id).show();
  });
});

function ImageLarge(Element,type){
  var OldSrc = $(Element).attr('src'); var Title = $(Element).attr('title');
  if(type == 'on'){
    var Replaced = '-thumb'; var Replace = '';
    var NewSrc = OldSrc.replace(Replaced,Replace)
    $('<p class="tempImage"><img src="'+NewSrc+'" title="'+Title+'" alt="'+Title+'" /></p>').insertAfter(Element);
  }else{
    $('.tempImage').replaceWith('');
  }

}

function HeightScale(){
  var Height = $(window).height();
  $("#admin-site").css('min-height',Height+'px');
}
