jQuery(function($){
  $('li:not(#tmenu_title)').click(function(){
    $('ul.tour_menu li').removeClass('selected');
    $(this).addClass('selected');
  });

  if( (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) ) {
    $('div#home_slideshow').empty().hide();
    $('div#noflash').fadeIn(120);
  }
});

