$(document).ready(function()
{
	/*
	 * news support
	 */
	$('#news li:eq(0)').addClass('first');
    $('#news li:eq(1)').addClass('second');
    $('#news li:eq(2)').addClass('third');


	/*
	 * add id for contact 
	 */
	$('#menu li:last-child').attr('id','menu-contact');


	/*
	 * menu
	 */
    $('#menu').before('<div id="flash" onclick="this.blur()"></div>');
    $('#media-kit').before('<div id="further-information-menu"><ul><li id="mk"><a href="" class="media-kit">Media Kit</a></li><li id="dl"><a href="" class="downloads">Downloads</a></li></ul></div>');
	$('#further-information-menu #mk ').addClass('active');
	
    $('#further-information-menu a.media-kit').livequery('click', function(event)
	{
        event.preventDefault();
		$('#further-information-menu #dl').removeClass('active');
		$('#further-information-menu #mk').addClass('active');
        $('#media-kit').css('display', 'block');
        $('#downloads').css('display', 'none');
    });

    $('#further-information-menu a.downloads').livequery('click', function(event)
	{
        event.preventDefault();
		$('#further-information-menu #mk').removeClass('active');
		$('#further-information-menu #dl').addClass('active');
        $('#media-kit').css('display', 'none');
        $('#downloads').css('display', 'block');
    });


	/*
	 * flash support
	 */
	if($('#flash').length > 0)
	{
		var flashvars = {
			xmlPath: "/media/people.xml"
		};
		var params = 
		{
			menu: "false",
			wmode: "transparent"
		};
		var attributes = {};
		
		swfobject.embedSWF('/media/flash/banner.swf', 'flash', '1004', '328', '9.0.0', '/media/flash/expressInstall.swf', flashvars, params, attributes);
	}


	/*
	 * overlay
	 */
	$('#neuro').append('<div id="neuropopup-overlay"></div><div id="neuropopup"><div id="neuropopup-content"></div><div id="neuropopup-close"><p>Close</p></div></div>');

	/* show overlay */
	function showOverlay(sUri)
	{
		$('#neuropopup-overlay').css(
		{
			"width": $('body').width(), 
			"height": $('body').height()
		});
		$('#neuropopup-content').load(sUri);
		$('#neuropopup-overlay, #neuropopup').show();
	};
	
	/* show this */
	$('.person, .person + .linkToFile, .linkToNote').livequery('click', function(event)
	{
		sUri = "";
		event.preventDefault();
		
		if($(this).hasClass('person'))
		{
			sUri = $(this).next().find('a').attr('href');
		}
		else
		{
			sUri = $(this).find('a').attr('href');
		}
		
		if((sUri != "") && (sUri != '#'))
		{
			showOverlay(sUri);
		}
		else
		{
			return false;
		}
	});
	
	/* hide overlay */
	function hideOverlay()
	{
		$('#neuropopup-overlay, #neuropopup').hide();
		$('#neuropopup-content').html('');
	}
	
	/* hide this */
	$('#neuropopup-close, #neuropopup-overlay').click(function()
	{
		hideOverlay();
	});

	
	/* 
	 * jScrollPane 
	 */
	$('#neuropopup-content .description, #neuropopup-content .information').livequery(function()
	{
		$(this).jScrollPane({showArrows:true, scrollbarWidth: 27});
	});
	
	/*
	 * pngFix
	 */
	$(function(){$(document).pngFix();});
});
