/****** FILE: mysite/javascript/js.intercity.stops.js *****/

(function($){$(document).ready(function(){$('table.timetable td.stop').click(function(){window.location='/timetable/lookup/'+$(this).attr('stopcode');});$('table.timetable tr.service').click(function(){window.location='/timetable/lookup/'+$(this).attr('servicecode');});$('table.timetable span.xferSvc').click(function(){window.location='/timetable/lookup/'+$(this).attr('servicecode');});$('table.timetable a.HotelLink').click(function(){window.location='/timetable/lookup/'+$(this).attr('href');return false;});$('table.timetable td.stop a').each(function(){var stp=$(this).html();$(this).parent().html(stp);});});})(jQuery);
;
