$(document).ready(function(){
        //
        $("#refresh_bulletin").live('click', function () {
            $('#bulletin_quote').empty().html('<img src="http://www.dailygood.org/pics/icons/loading.gif" />');
            $("#bulletin_quote").load("index.php",{pg:"ajax_quote"});
            return false;
        });

});

function popup_story(url) {
   jQuery().colorbox({width:"80%", height:"80%", iframe:true, href:url});
   return false;
}
function popup_subscribe() {
   var email1 = $("input#email1").val();
   var url = "http://www.dailygood.org/index.php?pg=ajax_sub&em=" + email1;
   jQuery().colorbox({width:"80%", height:"80%", iframe:true, href:url});
   return false;
}

