// JavaScript Document
$(document).ready(function()
{
	//this one handles the rollovers for the nav
	$(".links a").mouseover(function()
	{$(this).children("img").attr({"src":$(this).children("img").attr("src").replace('_','-over_')});}).mouseout(function(){$(this).children("img").attr({"src":$(this).children("img").attr("src").replace('-over_','_')});});
	
});

