﻿function ColemanExImageButton_Preload()
{
	if( typeof( aColemanExImageButton ) != 'undefined' )
	{
		for( var i = 0; i < aColemanExImageButton.length; i++ )
		{
			var src = aColemanExImageButton[i];
			aColemanExImageButton[i] = new Image();
			aColemanExImageButton[i].src = src;
		}
	}
}

// /images/hires/thumbs.430x430.ffffff/2000005100.jpg
// /images/hires/thumbs.50x50.ffffff/2000005100.jpg
function SetPhoto( img )
{
	var photo = document.getElementById( "Photo" );
	if( photo )
	{
		var from = GetName( photo.src );
		var to = GetName( img.src );
		//alert( from + "\n" + to );
		photo.src = photo.src.replace( from, to );
	}
}

function GetName( src )
{
	var i = src.lastIndexOf( '/' );
	return src.substr( i );
}
