// JavaScript Document

$(document).ready(function()
{
	$("#footer").find("img").each(function()
	{
		$(this)
			.mouseover(function()
			{
				this.src = this.src.replace(".jpg","_o.jpg");
			})
			.mouseout(function()
			{
				this.src = this.src.replace("_o.jpg",".jpg");
			});
	});
	
});


