$(document).ready(function(){
	$("#aboutlink").hover(function(){
		$(this).css({paddingTop:"95px"});
		$(this).parent().css({backgroundColor:"#86c431"});
		$(this).animate({paddingTop:"90px"}, 300, function() {});
		$(this).animate({backgroundPositionX:"5px", backgroundPositionY:"10px"}, 300, function() {});
	},	
	function(){
		$(this).parent().css({backgroundColor:"#005f87"});
		$(this).css({backgroundPositionX:"-125px", backgroundPositionY:"10px"});
	});

	
	$("#employerserviceslink").hover(function(){
		$(this).css({paddingTop:"95px"});
		$(this).parent().css({backgroundColor:"#86c431"});
		$(this).animate({paddingTop:"90px"}, 300, function() {});
		$(this).animate({backgroundPositionX:"6px", backgroundPositionY:"10px"}, 300, function() {});
	},	
	function(){
		$(this).parent().css({backgroundColor:"#005f87"});
		$(this).css({backgroundPositionX:"-110px", backgroundPositionY:"10px"});
	});
	
	
	$("#candidateserviceslink").hover(function(){
		$(this).css({paddingTop:"95px"});
		$(this).parent().css({backgroundColor:"#86c431"});
		$(this).animate({paddingTop:"90px"}, 300, function() {});
		$(this).animate({backgroundPositionX:"7px", backgroundPositionY:"10px"}, 300, function() {});
	},	
	function(){
		$(this).parent().css({backgroundColor:"#005f87"});
		$(this).css({backgroundPositionX:"-122px", backgroundPositionY:"10px"});
	});
	$("#submitresumelink").hover(function(){
		$(this).css({paddingTop:"95px"});
		$(this).parent().css({backgroundColor:"#86c431"});
		$(this).animate({paddingTop:"90px"}, 300, function() {});
		$(this).animate({backgroundPositionX:"9px", backgroundPositionY:"10px"}, 300, function() {});
	},	
	function(){
		$(this).parent().css({backgroundColor:"#005f87"});
		$(this).css({backgroundPositionX:"-125px", backgroundPositionY:"10px"});
	});
	$("#contactlink").hover(function(){
		$(this).css({paddingTop:"95px"});
		$(this).parent().css({backgroundColor:"#86c431"});
		$(this).animate({paddingTop:"90px"}, 300, function() {});
		$(this).animate({backgroundPositionX:"10px", backgroundPositionY:"2px"}, 300, function() {});
	},	
	function(){
		$(this).parent().css({backgroundColor:"#005f87"});
		$(this).css({backgroundPositionX:"-105px", backgroundPositionY:"2px"});
	});
});
