// JavaScript Document
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ------------------ Documento programado por Pedro Ramos  - http://www.conwebpropia.com - drito7@telefonica.net -------------------------------- */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */

function detectar_IE6() // Detecta si estamos en IE6 o mas bajo
{
 var ieVer=/*@cc_on function(){ switch(@_jscript_version){ case 1.0:return 3; case 3.0:return 4; case 5.0:return 5; case 5.1:return 5; case 5.5:return 5.5; case 5.6:return 6; case 5.7:return 7; case 5.8:return 8; }}()||@*/0;
 if (ieVer==6) pngfix();
}
// Funcion ROLLOVER
function cambia_m(id,ruta)
{
 var idd="#" + id;
 $(idd).attr('src',ruta);
 $(idd).css('border','0');
 $(idd).css('cursor','pointer');

 detectar_IE6();
}

