$(document).ready(function(){
	
	// Run Matt Kersley's jQuery Responsive menu plugin (see plugins.js)
	if ($.fn.mobileMenu) {
		$('.main-nav ul').mobileMenu({
			switchWidth: 940,                   // width (in px to switch at)
			topOptionText: 'Kies een pagina',     // first option text
			indentString: '&nbsp;&nbsp;&nbsp;'  // string for indenting nested items
		});
	}

    // Fancybox
    $(".gallery.pop a, .pop-link").fancybox({overlayOpacity: 0.5, overlayColor: '#000', scrolling : 'no'});
    
    // Tabs
    $("ul.tabs").tabs("div.panes > .pane");
    
    // Hide/show content
    $('.fullscreen').click(function() {
      $('.content, .main-nav, #controls-wrapper, .footer').fadeToggle('slow', 'linear');
    });
    
    // Remove <a> from .logo on homepage
    $('.home .logo').unwrap();

});








