$(document).ready(function(){
	$("#clients_hot_spot").mouseover(function() {
		$("#people_landing").attr("src","img/people_clients_hover.jpg");	
	});
	$("#clients_hot_spot").mouseout(function() {
		$("#people_landing").attr("src","img/people.jpg");
	});
	$("#candidates_hot_spot").mouseover(function() {
		$("#people_landing").attr("src","img/people_candidates_hover.jpg");
	});
	$("#candidates_hot_spot").mouseout(function() {
		$("#people_landing").attr("src","img/people.jpg");
	});
});
