$(document).ready(function(){
	jQuery.preloadimages = function() {
		for(var i = 0; i<arguments.length; i++) {
			jQuery("<img>").attr("src", arguments[i]);
		}
	}
	
	$.preloadimages("images/hop_box_ad.gif");

	$('#hop').hover(function() {
		$(this).attr("src","/images/hop_box_ad.gif");
			}, function() {
		$(this).attr("src","/images/hop_box.gif");
	});


});
