  $(document).ready(function(){

var bildergallerie = function(images){

$(".newsBoxTitel").fadeOut("500", function(){ 
  $(".newsBoxTitel").html("");
  $(".newsBoxTitel").append(
  $("<div>")
  .css({
    width : 500,
    height: 500,
    "display" : "table-cell",
    "cursor" : "pointer",
    "vertical-align" : "middle"
  })
  .append(
  $("<img>")
  .attr("src",images)
  ).append(
  $("<div>")
  .css({
    "text-align" : "center",
    "font-family" : "verdana",
    "font-size" : "10px",
    "padding" : "5px 0 0 0"
  })
  .html("<b></b>")
  )
  ).fadeIn("500");}
);

}


$('td a img').click(function (){
var images = $(this).attr("src");
images = images.replace("&x=85","");
images = images.replace("inc/thumb.php?image=../","");
bildergallerie(images); 
return false;
});
});