$(document).ready(function(){
	
	// Images
	function doShadows()
	{
		
		$('#content .image img, #content .box').each(function ()
		{
			if (!$(this).find(".shadowleft").length)
			{
				$(this).after('<div class="shadowleft"><div class="shadowright"></div></div>');
				$(this).next('.shadowleft').css('width', $(this).width());
			}
		})
	}
	
	doShadows();



	$('.left .caption, .right .caption').each(function(){
		var w = $(this).prev().width();
		$(this).css('width',w)
	})
	 
	// FTR
	$('#navigation li').ftr("swf/FlareSerif.swf",{size:12, color:"#eb9b0b",transform:"uppercase"});
	$('.info h3').ftr("swf/FlareSerif.swf",{size:14, color:"#eb9b0b",transform:"uppercase"});
	$('#hotspots .prompt').ftr("swf/FlareSerif.swf",{size:12, color:"#000001",transform:"uppercase"});
	$('#content h1').ftr("swf/FlareSerif.swf",{size:26, color:"#eb9b0b",transform:"uppercase"});

	
	// Frontpage
	$('#hotspots a span').css('visibility','visible').hide();
	$('#hotspots a')
		.click(function (event)
		{
			var index = $(this).attr('href').split("?")[1].split("=")[1];
			var url = 'inc/content/'+index+'.inc.php';
			$.get(url, function(data) {
				$('#content').html(data);
				tb_init('a.thickbox, area.thickbox, input.thickbox');
				$('#content h1').ftr("swf/FlareSerif.swf",{size:26, color:"#eb9b0b",transform:"uppercase"});
				doShadows();
			});
			event.preventDefault();
			event.stopPropagation();
		})
		.hover(function()
		{
			$(this).find('span').fadeIn("fast");	
			
		},
		function ()
		{
			$(this).find('span').fadeOut(5);	

		});
		


});
