$(document).ready(function(){
	$('.home_callout .left').hover(
		function(){ $('.home_callout .left aside').fadeIn(500); },
		function(){ $('.home_callout .left aside').fadeOut(500); }
	);
	
	$('.home_callout .center').hover(
		function(){ $('.home_callout .center aside').fadeIn(500); },
		function(){ $('.home_callout .center aside').fadeOut(500); }
	);
	
	$('.home_callout .right').hover(
		function(){ $('.home_callout .right aside').fadeIn(500); },
		function(){ $('.home_callout .right aside').fadeOut(500); }
	);
	
	$('#left-box').click(function(){
		window.location.href = '/about';
	});
	
	$('#center-box').click(function(){
		window.location.href = '/services';
	});
	
	$('#right-box').click(function(){
		window.location.href = '/industries';
	});
});
