$(document).ready(function(){
//  $('#gallerylist').accordion({ 
//    active: false, 
//    header: '.head', 
//    navigation: true, 
//    event: 'click', 
//    fillSpace: true, 
//    animated: 'easeslide' 
//  });
  if($('.paging ul').length)
  {
    centerPagination();
  }
   if ( $.browser.mac()) // Include Mac Stylesheet
  {

    $('head').append('<link rel="stylesheet" href="assets/css/mac.css" media="screen,projection" type="text/css" />');

  }
 
});

function centerPagination()
{
  width = 0;
  $('.paging ul li').each( function(){ width += $(this).width(); } );
  width += 30; // (Mac Fix)
  if ( width < 485 )
  {
    $('.paging ul').css('width',width+'px');
  }
}
