jQuery(document).ready(function () {
	
	//Add JS control class
	jQuery('body').addClass('js-enabled');
	
	//Hide all tab content
	jQuery('.tab').hide();
	
	//Handle tab clicks
	jQuery("a[href^='#tab']").click(
		function()
		{
			//Hide more info
			jQuery('p#more').hide();
		
			//Get target tab
			var target_tab = jQuery(this).attr('href');
		
			//Hide all tabs
			jQuery('.tab').hide();
			
			//Fade in target tab
			jQuery(target_tab).fadeIn();
			
			//Dont process link
			return false;
		}
	);
	
	//Focus on first form input
	jQuery('form input:first').focus();
	
	//Hide images for preload
	jQuery('div#content img').hide();
	
	//Easter egg
	jQuery('body').keypress(function(event) { if (event.keyCode == '71') jQuery(this).toggleClass('grid'); });
});

jQuery(window).load(function() {

	//Fade in images
	jQuery('div#content img').fadeIn();
	
});
