<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="javascript/jquery.tooltip.pack.js"></script>
<script type="text/javascript" language="javascript">

    //aprovecho el fichero para incluir funciones generales
//onmousedown = new Function("return false");
oncontextmenu=new Function("return false");
function Fmensaje(texto, tiempo){
	if(!tiempo){tiempo=700};
$('#aviso').fadeIn('fast');
$('#aviso').html(texto);
setTimeout("$('#aviso').fadeOut('fast');",tiempo);	
}
function eltooltip(){
if(localStorage.getItem('ayuda')=='on'){
  $('div *').tooltip({
	  track: true,
	  delay: 0,
	  showURL: false,
	  showBody: " - ",
	  fade: 250
  })
}else{
	$("*").removeAttr("title");
}}
  </script>

