jQuery(function($) {

  // Add first-child/last-child classes for IE
  $('li:last-child').addClass('last-child');
  $('li:first-child').addClass('first-child');
  
  // Add classes for images with alignment
  $('img[align=left]').addClass('left');
  $('img[align=right]').addClass('right');
  
  // Homepage slideshow
  if($('body').hasClass('home')) {
    $('#slideshow').cycle();
  }
  
  // Location Maps
  if($('body').hasClass('locations')) {
    if ($('#map').length > 0) $('#map').jMapping();
  }
   
});