//Image pre-loader plug-in
jQuery.preloadImages = function() {
var a = (typeof arguments[0] == 'object')? arguments[0] : arguments;
for(var i = a.length -1; i > 0; i--) {
jQuery("<img>").attr("src", a[i]);
}
}

// Pre-load the images
$.preloadImages("../images/download.png, ../images/download_hover.png");



$(function () {		
	
	
	$('#download_image').hover(
		function () {
		$(this).attr({ src: "images/download_hover.png"
		        });
		},
		function () {
		$(this).attr({ 
		          src: "images/download.png"
		        });
		}
	);
	
});