$(document).ready(function()
{
	/*
	$("#divFooter").load("footer.cfm");

	$("#divHeader").load("header.cfm");
	
	$("#showNav").load("show_nav.cfm");

	$("#linkNav").load("link_nav.cfm");

	$("#athletesNav").load("athletes_nav.cfm");
	*/
	
});




$(".rollover").live("mouseover", function(){
 		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
});

$(".rollover").live("mouseout", function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
});
