$(document).ready(function(){

 Shadowbox.init();
 Cufon.replace('.georgia, #nav li a, #leftpanel h1, #leftpanelFull h1, h2, h3', {hover: true, fontFamily: 'Georgia'});
 Cufon.replace('.georgiaItalic', {hover: true, fontFamily: 'Georgia Italic'});

 $('#leftpanel .featureBox:first').css('margin-left','0px');
 $('#content p:first').addClass('topp');
 $('.divider:last').css('margin','0px');

 var tempBox = $('#content').find('img');
 var imgClass = $(tempBox).attr('class');
 if(imgClass == 'left') {
  $(tempBox).wrap('<div class="templeft"></div>');
  if ($.browser.msie) {
  $('.left').boxShadow(0, 0, 5, '#888');
  }
 } else if(imgClass == 'right') {
  $(tempBox).wrap('<div class="tempright"></div>');
  if ($.browser.msie) {
   $('.right').boxShadow(0, 0, 5, '#888');
  }
 }

});
