// JavaScript Document

$(document).ready(function()
{
	$("#nav a img").not(".currentPage").hover(function()
	{
		$(this).attr('src', $(this).attr('src').replace('A_', 'B_'));
	}, function()
	{
		$(this).attr('src', $(this).attr('src').replace('B_', 'A_'));
	});
	
	$("#nav a img.currentPage").each(function()
	{
		$(this).attr('src', $(this).attr('src').replace('A_', 'B_'));
	});
	
	$("#antiCaptcha").val('Valid');
});