// JavaScript Document
$(document).ready(function(){

	// Set Variables
	var show_chat = false;
	
	// Hide Join Us
	$('#join-us').slideUp();
	
	// View Nightclub Flyers Code
	$('#widget-flyers-header').click(function(){
											 $('#widget-flyers').slideToggle('fast');
											 });
	
	
	// View/Hide Chat Box
	$('#widget-chat-link').click(function(){
		if (show_chat == false){
			$('#widget-chat').animate({
				top:'-375px'
				}, 'normal');
				show_chat = true;
		} else {
			$('#widget-chat').animate({
				top:'22px'
				}, 'normal');
				show_chat = false;
		}
	});
	
	// View/Hide Music Box
	$('#widget-music-link').click(function(){
		if (show_chat == false){
			$('#widget-music-player').animate({
				top:'-400px'
				}, 'normal');
				show_chat = true;
		} else {
			$('#widget-music-player').animate({
				top:'22px'
				}, 'normal');
				show_chat = false;
		}
	});
		
	// Make logo clickable
	$('#logo').click(function(){
			location.href = 'http://www.tabuloungesa.com';
		});
	
	

});