$(document).ready(function(){
  $('#about_link').click(function() {
    $('#topnav li').removeClass('active');
    $('#tnav_about').addClass('active');

	$('.header_divider img').css('margin-left', '769px');
    
    $('#restaurants').hide();
	$('#murals').hide();
	$('#about_box').show();
  });

  $('#tnav_restaurant a').click(function() {
    $('#topnav li').removeClass('active');
    $('#tnav_restaurant').addClass('active');
 
	$('.header_divider img').css('margin-left', '572px');
 
	$('#about_box').hide();
	$('#murals').hide();
	$('#restaurants').show();
  });

  $('#logo').click(function() {
    $('#topnav li').removeClass('active');
    $('#tnav_restaurant').addClass('active');
 
	$('.header_divider img').css('margin-left', '572px');
 
	$('#about_box').hide();
	$('#murals').hide();
	$('#restaurants').show();
  });

  $('#tnav_murals a').click(function() {
    $('#topnav li').removeClass('active');
    $('#tnav_murals').addClass('active');
    
	$('.header_divider img').css('margin-left', '682px');
    
	$('#about_box').hide();
	$('#restaurants').hide();
	$('#murals').show();
  });
  
  
    $("a.portimg").fancybox({
        'titlePosition': 'outside',
        'titleFormat': function(title, currentArray, currentIndex, currentOpts) { return '<span id="fancybox-title-over">' + title + '</span>'; },
        'overlayColor': '#000',
        'overlayOpacity': 0.5
    });
	
});
