$(function() {

	$("#iconMenu img, #pageBody.home div.rightCol div.section div.ico img").hover(function() {
		var src = $(this).attr("src");
			$(this).stop().animate({
					width: "42px",
					height: "42px",
					top: "-5px",
					left: "-5px"
				},
				"fast",
				function() {
					$(this).attr("src", src.replace(".png", "-b.png"));
			});
		},
		function() {
			var src = $(this).attr("src");
			$(this).stop().animate({
				width: "32px",
				height: "32px",
				top: "0px",
				left: "0px"
			},
			"fast",
			function() {
				$(this).attr("src", src.replace("-b.png", ".png"));
		});
	})

});