$(function() {
	var image_cache = new Object();
	var image_preset = $( '#swap-target img' ).attr( 'src' );
	$( '.entry-box2 a' ).each( function(){
		
		var imgsrc = $( this ).attr( 'href' );
		image_cache[ this.src ] = new Image();
		image_cache[ this.src ] = imgsrc;
		
		$( this )
			.attr( 'href', 'javascript:;' )
			.hover(
				function(){
					$( '#swap-target img' ).attr( 'src', imgsrc );
				},
				function(){
					$( '#swap-target img' ).attr( 'src', image_preset );
				}
			)
		;
	} );
});