$(document).ready(function() {
	
	
	$('#call').fadeIn('slow');
	$('#function').hide();
	$('#function2').hide();
	$('#function3').hide();
	$('#foodBtn').addClass('button selected');	
	
	$('#foodBtn').click(function() {
		$('#call').fadeIn('slow');
		$('#function').fadeOut('fast');
		$('#function2').fadeOut('fast');
		$('#function3').fadeOut('fast');
    	$('#userBtns .button').removeClass('selected');
		$(this).removeClass('button');
		$(this).addClass('button selected');		
	})
	
	$('#foodBtn2').click(function() {
		$('#call').fadeOut('fast');
		$('#function').fadeOut('fast');
		$('#function2').fadeOut('fast');
		$('#function3').fadeIn('slow');
    	$('#userBtns .button').removeClass('selected');
		$(this).removeClass('button');
		$(this).addClass('button selected');		
	})
	
	$('#brunchBtn').click(function() {
		$('#call').fadeOut('fast');
		$('#function').fadeOut('fast');
		$('#function2').fadeIn('slow');
		$('#function3').fadeOut('fast');
   		$('#userBtns .button').removeClass('selected');
		$(this).removeClass('button');
		$(this).addClass('button selected');
	})
	
	$('#drinkBtn').click(function() {
		$('#call').fadeOut('fast');
		$('#function').fadeIn('slow');
		$('#function2').fadeOut('fast');
		$('#function3').fadeOut('fast');
   		$('#userBtns .button').removeClass('selected');
		$(this).removeClass('button');
		$(this).addClass('button selected');
	})
		
	  $('#userBtns .button').hover(function() {
	    $(this).addClass('hover');
	  }, function() {
	    $(this).removeClass('hover');
	  });

});
