$(document).ready(function() {
	
	//Toggle grid
	jQuery('body').keypress(function(event) { if (event.keyCode == '71') jQuery(this).toggleClass('grid'); });
	
	//Toggle section visibility
	jQuery('#content > div.section h2')
		.append('<a class="toggle" href="#toggle">Hide</a>')
		.find('a.toggle').toggle(
			function() { jQuery(this).closest('div.section').find('div.colset').fadeOut('fast').end().end().html('Show'); return false; },
			function() { jQuery(this).closest('div.section').find('div.colset').show().end().end().html('Hide'); return false; }
		);
	
});
