$(document).ready(function() { $('#blanket').height($(document).height()); $('.directions_link').bind( 'click', function() { $('.directions_popup').fadeOut('fast'); $('#blanket').show(); $($(this).attr("href")).fadeIn('slow'); return false; } ); $('.directions_close').bind( 'click', function() { $($(this).attr("href")).fadeOut('fast'); $('#blanket').hide(); return false; } ); $('#blanket').bind( 'click', function() { $('.directions_popup').fadeOut('fast'); $('#blanket').hide(); return false; } ); });