var TextSize1 = 13; var TextSize2 = 11; $(document).ready(function() { $("#FacebookShare_Container").append(''); }); function PageButtonOver(obj) { $(obj).css('margin-top','-18px'); } function PageButtonOut(obj) { $(obj).css('margin-top','0px'); } function ShareLinkOver() { $("#PAGELINKS_SHARE_I").hide(); $("#PAGELINKS_SHARE_A").show(); } function ShareLinkOut() { $("#PAGELINKS_SHARE_I").show(); $("#PAGELINKS_SHARE_A").hide(); } function ResizeText(value) { if (value!=1 && value!=-1) { return; } if (value==1 && TextSize1>16) { return; } if (value==-1 && TextSize1<9) { return; } TextSize1 += value; TextSize2 += value; $('div.bigtxtB1').css('font-size',TextSize1+'px'); $('div.smalltxtB1').css('font-size',TextSize2+'px'); }