//Fades the overlay and popup contents out
//This is being used by the embedded flash movie after it completes it's animation

function fade_overlay()
{
        jQuery(function(){
            jQuery('#overlay, #popup-wrapper').fadeOut('slow');
        });
}



