$(document).ready(function() {

		jQuery(function( $ ){			
				$.preload( '#header_container', {
					find:'.jpg',
					replace:'_hover.jpg'
				});
			
				$('#header_menu img').hover(function(){
					this.src = this.src.replace('.jpg','_hover.jpg');	
				},function(){
					this.src = this.src.replace('_hover','');
				});
				
			});
			   
 });