$(document).ready(function() { $('#whatpop').hide(); $('#whatis').toggle(function(event) { $('#whatpop').fadeIn(); }, function(event) { $('#whatpop').fadeOut(); }); });
