$(document).ready(function() {
	var $menu_link = $('#menu a');
	var is_glowing = false;
	
	function glowMenu() {
		if (is_glowing) {
			$('#menu a').removeClass('hover');
			is_glowing = false;
		} else {
			$('#menu a').addClass('hover');
			is_glowing = true;
		}
	};
	
	setInterval(glowMenu, 1500);
	
	
	
	// Fix the font styles if chicken basket did not load.
	// Detect beach_txt overflowingo onto two lines.
	function adjustFonts()
	{
		var $beach_txt = $('.beach span.big');				
		if ($beach_txt.height() > 75)
		{
			$beach_txt.css('font-size', '38px').css('letter-spacing', '-2px');
			$('.beach').css('margin-bottom', '14px');
			$('.hours li').css('font-size', '18px');
			$('.hours li span').css('font-style', 'normal');
			$('.sea').css('font-size', '22px');
			$('.beach span.big, .hours li, .sea').css('font-style', 'italic');
		}
	};
	
	setTimeout(adjustFonts, 1000);
	
	$('.new-win').attr('target', '_blank');
});

