$(document).ready(function() {  
    
    $("#cart-head").mouseover(function() {
        $.post("_kosik-popus.php", {
          }, function(response){
           setTimeout("finishAjax3('kosikObsahPopup', '"+escape(response)+"')", 500);
          });
      	return false;
    });
    
});

function finishAjax3(id, response) {
    var tempresp = unescape(response);
    if (tempresp!='') {
      $('#'+id).html(tempresp);
      $('#'+id).show();
    }
}
