
jQuery(document).ready(function($) {
	Cufon.replace('#navigation ul li, h1, h2, h3, h4, h5, #sidebar .title', { fontFamily: 'League Gothic' });
	Cufon.replace('#navigation ul li', { color: '#ffffff' });
	Cufon.replace('.current_page_item li', {color: '#ffffff'});
	
	jQuery(".ceebox").ceebox();
	
	/* Cufon Font Replacement */

	
	$(nightclub_selectbox_change);
			function nightclub_selectbox_change(){
				$('#nightclub').change(update_date_list);
			}
			function update_date_list(){
				var nightclub=$('#nightclub').attr('value');
				$.get('include/get_list.php?nightclub='+nightclub, show_date);
			}
			function show_date(date){
				$('#date_list').html(date);
			}

	$(nightclub1_selectbox_change);
			function nightclub1_selectbox_change(){
				$('#nightclub1').change(update_date_list1);
			}
			function update_date_list1(){
				var nightclub1=$('#nightclub1').attr('value');
				$.get('include/get_list1.php?nightclub1='+nightclub1, show_date1);
			}
			function show_date1(date1){
				$('#date_list1').html(date1);
			}
			
	/* Superfish Font Replacement */
	$("ul.sf-menu").superfish({
		autoArrows: false,
		delay: 600, // delay on mouseout
		animation: {opacity:'toggle', height:'show'}, // fade-in and slide-down animation
		speed: 350, // faster animation speed
		autoArrows: false, // disable generation of arrow mark-up
		dropShadows: false // disable drop shadows
	});
	/* JQUERY GRID ACTIVATION */
	
	
	

});


