$(document).ready(function()
{
	//********************************************************
	//SKILLS ICONS MOUSEOVER CODE BEGIN
	//********************************************************
	
	var skillSectLargestDivHeight = 0;
	
	//Hide all by default
	$('#skillsParagraphs div').each(function()
	{
		skillSectLargestDivHeight = ($(this).height() > skillSectLargestDivHeight) ? $(this).height() : skillSectLargestDivHeight;
		$(this).hide();
	});
	
	//set the height of all the skill divs to the same height
	$('#skillsParagraphs div').each(function()
	{
		$(this).height(skillSectLargestDivHeight);
	});
	
	$('#skillsParagraphs #fb').show();
	
	$('#skillIcons img').each(function() 
	{
		//add mouse over to each image
		//on mouse over, hide all divs in #skillsParagraphs
		//show div with id = img.name
		var currentImgNameAttr = $(this).attr('name');
		
		$(this).mouseover(function() 
		{
			$('#skillsParagraphs div').each(function(){$(this).hide()})
			$('#skillsParagraphs #' + currentImgNameAttr).show();
		});
	});
});


//********************************************************
//SKILLS ICONS MOUSEOVER CODE END
//********************************************************
