//====================================================================================================================

	var companySpeed = 500;
	
//====================================================================================================================

	$(document).ready(initCompanies);
	
//====================================================================================================================

	function initCompanies()
	{
		$('#ourCompanies a').hover(companyMouseIn, companyMouseOut, 'easeInOutQuad');
	}

//====================================================================================================================

	function companyMouseIn()
	{
		$(this).children('img').stop(true, false).animate({'left':110}, companySpeed);
		$(this).children('span').stop(true, false).animate({'width':120}, companySpeed);
		//$(this).children('span');
		//$(this).children('img');
	}

//====================================================================================================================

	function companyMouseOut()
	{
		$(this).children('img').stop(true, false).animate({'left':0}, companySpeed);
		$(this).children('span').stop(true, false).animate({'width':10}, companySpeed);
	}
	
//====================================================================================================================


