// JavaScript Document

$(document).ready(function() {
	$(".branding").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "842px"}, "slow");
	});
	$(".content").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "630px"}, "slow");
	});
	$(".commerce").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "436px"}, "slow");
	});
	$(".design").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "307px"}, "slow");
	});
	$("#logo").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "200px"}, "slow");
	});
	$("#footer").mouseover(function(){
		$("#spokesman").animate({ marginLeft: "200px"}, "slow");
	});
});