$(document).ready(function()
{
	$('#subnav li.active').next().children('a').css('background', 'none');
	
	$('#subnav li:last').addClass('last');
	
	$('#philly_banner a').click(function()
	{
		$('#philly_banner').remove();
		$('body').css('background-position', 'center top');
	});
	
	/mobile/i.test(navigator.userAgent) && !location.hash && setTimeout(function()
	{
		if(!pageYOffset)
		{
			$('html,body').animate(
			{
				scrollTop: $("#banner").offset().top
			}, 500);
		}
	}, 1000);
	
});
