// najetí nad obrázek
$("TD.tduvod").live('mouseenter', function(){
var element = $(this);
var id = element.attr("ide");
  $("DIV.obrhome").html("");
  $("#obrhome_"+id).show();
  $("#obrhome_"+id).load("http://www.webgames.cz/300x100/hrahome.php?id="+id);
return false;});

// opuštění obrázku
$("TD.tduvod").live('mouseleave', function(){
  $("DIV.obrhome").html("");
return false;});

// načíst další homepage
$("A.NacistDalsi").live('click', function(){

var element = $(this);
var strana = element.attr("id");
var co = element.attr("title");
$("#hpload"+strana).fadeIn(400).html('<img src=\"/grafika/load.gif\" style=\"display: inline-block; margin: 0 0 0 10px; position: absolute;\">');

setTimeout(function(){
$("#dalsi"+strana).load("/ajax/dalsi.php?celkemher=12&co="+co+"&strana="+strana);
}, 0);

return false;});
