$(document).ready(function(){
	$("#WhatWeDo").mouseenter(function(){
		$("#WhatWeDo a").attr("style","text-decoration: underline;");
	}).mouseleave(function(){
		$("#WhatWeDo a").removeAttr("style");
	});
});
