( function() {

	function initNav() {
		var d;
		for( i = 1; i <= 5; i++) {
			d = document.getElementById( 'top' + i );
			if( d ) {
				d.onmouseover = function() {
					var num = this.id.replace( 'top', '' ),
						img = this.firstChild,
						prefix = img.id.replace( 'nav_', '' ),
						ts = document.getElementById( 'topswap' );
					ts.src = ts.src.replace( 'top_swap', prefix+'_'+num );
				};
				d.onmouseout = function()  {
					var num = this.id.replace( 'top', '' ),
						img = this.firstChild,
						prefix = img.id.replace( 'nav_', '' ),
						ts = document.getElementById( 'topswap' );
					ts.src = ts.src.replace( prefix+'_'+num, 'top_swap' );				
				};
			}
		}
	}
	init.push( initNav );
} )();