$(document).ready(function(){
	jQuery.preloadimages = function() {
		for(var i = 0; i<arguments.length; i++) {
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	
	$.preloadimages("images/hnav-bio-over.gif", "images/hnav-books-over.gif", "images/hnav-blog-over.gif", "images/hnav-contact-over.gif", "images/hnav-events-over.gif", 
					"images/h-hop-over.gif");


    $(".hoverswap").hover(
        function () {
            $(this).attr("src", $(this).attr("src").replace(/.gif/, "-over.gif"));
        },
        function () {
            $(this).attr("src", $(this).attr("src").replace(/-over.gif/, ".gif"));
        }
    );


});
