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