
		
			


		
		


			jQuery().ready(function() {
		$('.sortable tr:odd').addClass('odd');
		$('.sortable tr:even').addClass('even');

		$('#menu').css('left', ((786 - $('#menu').width()) )/2).show();
		$('#menu2bar').show();
		$('#menu2').css('left', ($('#menu2bar').width() - $('#menu2').width())/2);
		
		$('#eventdate').datepicker({firstDay: 1, dateFormat: 'mm/dd/yy', showOn: 'both', buttonImage: '/misc_images/popcalendar/calendar.gif', buttonImageOnly: true});
		
	});
	
	goParty = function(party) {
		document.location = '/index.cfm/p/pages.book-a-party.htm?party='+ escape(party);
	}

 var mediaStopped = false;

 function isPlaying() {
 	if (parent.audio != null) return !parent.audio.paused;
	else return false;
 }
 function mute() {
 	if (parent.audio != null) parent.audio.mute(); 
 }
 function nextTrack() {
 	if (parent.audio != null) parent.audio.nextTrack();
 }
 function muteCheck() {
	if (mediaStopped) {
		mediaStopped = false;	
		mute();
		return false;
	}
	
 	if (isPlaying()) {
		mute();
		mediaStopped = true;
	}
 }

	

		
	
