$(function() {
	var active;
	$("#nav img")
	.mouseover(function() { 
		if($(this).attr("id") != "active")
		{
			var src = $(this).attr("src");
			src = src.replace(".png","_o.png");
			$(this).attr("src", src);
		}
	})
	.mouseout(function() {
		if($(this).attr("id") != "active")
		{
			var src = $(this).attr("src");
			src = src.replace("_o.png", ".png");
			$(this).attr("src", src);
		}
	});
});
