$(document).ready(function(){$('#wait_1').hide();$('#drop_1').change(function(){$('#wait_1').show();$('#no_2').hide();$('#result_1').hide();$('#result_2').hide();$('#result_3').hide();$('#disabled_1').show();$('#disabled_2').show();$('#disabled_3').show();$.get("func.php",{func:"drop_1",drop_var:$('#drop_1').val()},function(response){$('#result_1').fadeOut();setTimeout("finishAjax('result_1', '"+escape(response)+"')",400)});return false})});function finishAjax(id,response){$('#wait_1').hide();$('#no_2').show();$('#disabled_1').hide();$('#'+id).html(unescape(response));$('#'+id).fadeIn()}function finishAjax_tier_three(id,response){$('#wait_2').hide();$('#no_3').show();$('#disabled_2').hide();$('#result_3').hide();$('#disabled_3').show();$('#'+id).html(unescape(response));$('#'+id).fadeIn()}function finishAjax_tier_four(id,response){$('#wait_3').hide();$('#disabled_3').hide();$('#'+id).html(unescape(response));$('#'+id).fadeIn()}function toggleLayer(whichLayer){var elem,vis;if(document.getElementById)elem=document.getElementById(whichLayer);else if(document.all)elem=document.all[whichLayer];else if(document.layers)elem=document.layers[whichLayer];vis=elem.style;if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)vis.display=(elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';vis.display=(vis.display==''||vis.display=='block')?'none':'block'}

$(function(){
  $('.popularPrinter').hover(
    function(){
       $(this).addClass('popularHovered');
    },
    function(){
       $(this).removeClass('popularHovered');
    }
  );
});
