$(document).ready(function(){
	jQuery.preloadimages = function() {
		for(var i = 0; i<arguments.length; i++) {
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	
	$.preloadimages("http://brentghelfi.com/images/anavbrentdown.gif", "http://brentghelfi.com/images/anavbooksdown.gif",
					"http://brentghelfi.com/images/anavappearancesdown.gif", "http://brentghelfi.com/images/anavcontactdown.gif",
					"http://brentghelfi.com/images/anavnewsdown.gif", "http://brentghelfi.com/images/anavblogdown.gif",
					"http://brentghelfi.com/images/1_volks_game_over.gif", "http://brentghelfi.com/images/2_volks_shadow_over.gif",
					"http://brentghelfi.com/images/3_venona_cable_over.gif", "http://brentghelfi.com/images/triangle_over.gif");

	$('#brent').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavbrentdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavbrentup.gif");
	});
	
	$('#books').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavbooksdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavbooksup.gif");
	});
	
	$('#appearances').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavappearancesdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavappearancesup.gif");
	});
	
	$('#contact').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavcontactdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavcontactup.gif");
	});
	
	$('#news').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavnewsdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavnewsup.gif");
	});
	
	$('#blog').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/anavblogdown.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/anavblogup.gif");
	});
	
	$('#book1').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/1_volks_game_over.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/1_volks_game.gif");
	});
	
	$('#book2').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/2_shadowofthewolf_over.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/2_shadowofthewolf.gif");
	});
	
	$('#book3').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/3_venona_cable_over.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/3_venona_cable.gif");
	});
	
	$('#backtotop').hover(function() {
		$(this).attr("src","http://brentghelfi.com/images/triangle_over.gif");
			}, function() {
		$(this).attr("src","http://brentghelfi.com/images/triangle.gif");
	});
});
