// Site-specific javascript.

/* 
Once the page has loaded, hide all HTML elements which have a CSS class 'shy'.

This helps us serve relevant content to search engines and people with disabilities,
without cluttering the visual appearance of the website. We use Javascript rather than
CSS to hide these elements because search engines are clever enough to realise when
elements are hidden from the user using CSS, and will often ignore them.

See the JQuery documentation at http://docs.jquery.com/ for more information.
*/
$(document).ready(function() {
	$('.shy').css('display', 'none');
});