$(document).ready(function() {
if(location.pathname != "/") {
$('#global-nav a[href^="/' + location.pathname.split("/")[1] + '"]').addClass('on');
} else $('#nav a:eq(0)').addClass('on');
});

$(document).ready(function() {
if(location.pathname != "/") {
$('#fnav a[href^="/' + location.pathname.split("/")[1] + '"]').addClass('on');
} else $('#nav a:eq(0)').addClass('on');
});

$(function(){
$(".sl_arrival a").each(function(){
if($(this).get(0).href==location.href)
$(this).toggleClass("on");
});
})

$(function(){
$(".sl_cate a").each(function(){
if($(this).get(0).href==location.href)
$(this).toggleClass("on");
});
})

$(function(){
$(".sl_date a").each(function(){
if($(this).get(0).href==location.href)
$(this).toggleClass("on");
});
})

