//animating the main menu
$(function () {
	$("#menu a div").mouseover(function () {
		this.style.paddingTop = "0.7em";
	});
	$("#menu a div").mouseout(function () {
		this.style.paddingTop = "0.5em";
	});
});
