$(document).ready(
	function()
	{
		var showthis;
		var clicked;

		$('a.jqhover').mouseover(function()
			{
				showthis = $(this).attr('id');
				$('div.intro').hide();
				$('.' + showthis).show();
				$('div#overlay').addClass('overlay'+showthis);
				$('div#overlay').show();

			}
		);

		$('a.jqhover').mouseout(function()
			{

					$('div.intro').show();
					$('.' + showthis).hide();
					$('div#overlay').removeClass();
					$('div#overlay').hide();
			}
		);

		$('a.jqhover').click.toggle(function(){
				clicked = true;
			},function(){
				clicked = false;
			}
		);			

		// Hide some things that we use js to do...
		$('.jshide').hide();



	}
);
