$(function() {
	if ( $('body').hasClass('banquets') || $('body').hasClass('contact') ) { // If we're on the banquet info or contact pages...
		// Show the location rotator
		$('div.photo').flash({
			width: '794px',
			height: '204px',
			src: './flash/banquets.swf'
		})
	} else { // Otherwise...
		// Show the food rotator
		$('div.photo').flash({
			width: '794px',
			height: '204px',
			src: './flash/rotator.swf'
		})
	}

	if ( $('body').hasClass('menu') ) {
		$('#content h3:first').before('<ul class="nav jump_links"></ul>');
		
		$('#content h3').each(function() {
			var content = $(this).text();
			$(this).before("<a href='#' name='jl_" + content + "' id='jl_" + content + "'></a>")
			$('ul.jump_links').append('<li><a href="#jl_' + content + '">' + content + '</a></li>')
		})
	}
	
	$('.alt').css({ display: 'none'})
})
