// Blog instance-specific plug-ins // Dues payment reminder. onLogin.push(function() { /* var dt = new Date() var thisYr = dt.getFullYear(); var yearPaid = 0; var roster = true; screwtopDb().url(DBURL) .attributes() .each(function(attr) { if (attr.name == "Year Paid") { yearPaid = attr.value; } if (attr.name == "roster") { if (attr.value == "false") { roster = false; } } }) .end(function() { if (yearPaid < thisYr && roster) { $('.donatebtn').hide(); $('.donatebtn a').html('
' + "Oops! You forgot to pay your dues.
" + '
' + "Click here to pay this year's dues.
"); $('.donatebtn').fadeIn(3000); //$('.duesreminder').fadeIn(2000); //$('.duesreminder').corner('8px'); } }); */ }); onReady.push(function() { /* $('#topsidebar').prepend( "
" + "" + "
SUPPORT US
DONATE
" + "
CLICK HERE NOW
" + "
" + "
"); */ });