// JavaScript Document
jQuery(function( $ ){
	//subnav for work
	var generateImageLink = "";
	
	$('.letterbtn').mouseenter(function(){
		$('.peoplebox').hide();
		//bottom align with javascript
		var h = -$(this).parent().find('.peoplebox').height()-24;
		$(this).parent().find('.peoplebox').css({'margin-top': h, 'z-index':800});
		$(this).parent().find('.peoplebox').show();
		return false;
	});
	$('.letterbtn').click(function(){
		return false;
	});
	$('.peoplebox').mouseleave(function(){
		$('.peoplebox').hide();
		return false;
	});
	$('#peopleHolder').mouseenter(function(){
		$('.peoplebox').hide();
	});
	$('#mainright').mouseleave(function(){
		$('.peoplebox').hide();
	});
	$('.peopleLink').click(function(){
		if ($(this).attr('href')=='#')
		{
			$('#headlineHolder img').show();
			$('#mainright p').show();
			generateImageLink = "";
			
		}else{
			$('#headlineHolder img').hide();
			$('#mainright p').hide();
			$('#peopleHolder').fadeOut(80, function(){
				$('#peopleHolder').	fadeIn(1);							
				$('#peopleHolder').html('<p class="loading"></p>');
			});
			$('.peoplebox').fadeOut(200);
			//remove the menu
			$.post("functions/getPerson.php", { n: $(this).attr('href')},
				function(data){
					if (data == 'NO DATA')
					{
						$('#peopleHolder').html('');
					}else
					{	
						$('#peopleHolder').hide();
						$('#peopleHolder').html(data).fadeIn(120);
						
					}
				});
		}
		return false;
	});
});