[jQuery] Problem with DIV CONTENT & show()

[jQuery] Problem with DIV CONTENT & show()


Hello everybody! First, I am sorry for my poor english! I am from
Argentina.
Well, I have the next problem in IE7, it works fine in FF.
I have DIVs, they appear when some IMGs have a mouseover or when a A
(link) has a click. I use show() to make them appear (or dissapear,
because they are 1in the same place).
Some DIVs content have links and one of them ("contacto"), has a form.
When they appear, I can't use the content. I mean, it appears all like
a big text and the mouse doesn't recognize the link (the cursor is
always the same, even for text), and I can not write into the inputs.
Its like the div is blocked.
I paste the whole code; I use XAJAX for Ajax (the form), but I delete
all the XAJAX to see if it caused the problem and.. nope. The problem
was still there, so I add it again.
I hope you can give me and answer...
Thanks :)
Patricio
CODE:
<?
require_once ("xajax_core/xajax.inc.php"); // Incluyo xAjax
$xajax = new xajax(); // Nuevo objeto a partir de Server
$xajax->configure('javascript URI', '');
$xajax->registerFunction("enviar"); // Registro la función
/* Función de enviar */
function enviar($form){
    $objResponse = new xajaxResponse(); // Creo una nueva Responde
    if($form["nombre"] == "" or $form["email"] == "" or $form["asunto"]
== "" or $form["msj"] == "")
    {
        $objResponse->assign("info", "innerHTML", "No llenaste todos los
campos, che...");
        $objResponse->assign("info","style.backgroundColor",
"rgb(225,0,0)");
    }
    else
    {
        $objResponse->assign("info", "innerHTML", "Gracias por ponerte en
contacto! (:");
        $objResponse->assign("info","style.backgroundColor",
"rgb(16,218,4)");
    }
    return $objResponse; // Ejecuto la Responde
}
$xajax->processRequest(); // Proceso el Request
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://
www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<TITLE> QuintoPiso | Ideas para la web </TITLE>
<META http-equiv="Content-Type" content="text/html; charset=utf-8" /