JPGMAG.checkPromote=function(){
    $j('#showhide').toggleClass('alreadyClosed');
    if($j('.rollswitch').is('#okayHide')){$j('.rollswitch').attr('id','okayShow');}else{$j('.rollswitch').attr('id','okayHide');}
    if($j(this).html()=='Thanks, fellow JPGers!'){
        $j(this).html('Show me the awesome!');
        JPGMAG.cookie.set('shIssue','true',(new Date()).addYear());
    }else{
        $j(this).html('Thanks, fellow JPGers!');
        JPGMAG.cookie.set('shIssue','true',new Date(1999));
    }
}

$j(function(){
    $j('#showhide').append('<div class="rollswitch" id="okayHide"><a>Thanks, fellow JPGers!</a></div>');
    $j('.rollswitch a').click(JPGMAG.checkPromote);
    if($j('.rollswitch a').length&&(JPGMAG.cookie.get('shIssue'))){$j('.rollswitch').attr('id','okayShow');$j('.rollswitch a').html('Show me the awesome!');}
});