//================================================================================ // Teclas de Atalho /* * Vai para o inicio (Alt + I) * Vai para conteúdo (Alt + C) * Vai para o fim (Alt + M) */ jQuery(function ($) { $(document).bind('keydown', 'Alt+i', function() { $.scrollTo('body',500); }); $(document).bind('keydown', 'Alt+c', function() { $.scrollTo('#breadcrumb',500); }); $(document).bind('keydown', 'Alt+m', function() { $.scrollTo('#footer',500); }); }); //================================================================================ jQuery(function ($) { $(document).bind('keydown', 'Alt+shift+a', function() { $(this).addClass('largeFont'); }); }); //================================================================================ //jQuery(function ($) { // fontSize("#font-control", "#mainBox", 10, 12, 18); //}); //================================================================================ $(function(){ $(".highContrast").click(function() { $.ajax({ url: "contraste/", success: function(html){ eval(html); } }); }); }); //================================================================================ jQuery(function ($) { $("#buscar").focus(function(srcc){ if ($(this).val() == $(this)[0].title) { $(this).removeClass("defaultTextActive"); $(this).val(""); } }); $("#buscar").blur(function() { if ($(this).val() == "") { $(this).addClass("defaultTextActive"); $(this).val($(this)[0].title); } }); $("#buscar").blur(); }); //================================================================================ jQuery(function ($) { var timeout = 500; var closetimer = 0; var ddmenuitem = 0; function jsddm_open() { jsddm_canceltimer(); jsddm_close(); ddmenuitem = $(this).find('ul').css('visibility', 'visible'); } function jsddm_close() { if(ddmenuitem) ddmenuitem.css('visibility', 'hidden'); } function jsddm_timer() { closetimer = window.setTimeout(jsddm_close, timeout); } function jsddm_canceltimer() { if(closetimer) { window.clearTimeout(closetimer); closetimer = null; } } $(document).ready(function() { $('#principal > li').bind('mouseover', jsddm_open) $('#principal > li').bind('mouseout', jsddm_timer) }); document.onclick = jsddm_close; }); //================================================================================