////////////////////////////////////////////////////////////////////////////////
// BEGIN
//

	function updateImage( image, title, description, price, sold )
	{
		var hImage = document.getElementById( "idImage" );
		var hTitle = document.getElementById( "idTitle" );
		var hDescription = document.getElementById( "idDescription" );
		var hPrice = document.getElementById( "idPrice" );
		
		hImage.src = image;
		hTitle.innerHTML = title;
		hDescription.innerHTML = description;
		
		if( sold == false && (price > 0 || price.length > 0) ) { hPrice.innerHTML = "$" + price; }
		else
		{
			if( sold == false ) { hPrice.innerHTML = ""; }
			else { hPrice.innerHTML = "<strong>SOLD</strong>"; }
		}
	}
	
	function buttonOver( obj )
	{
		obj.className = "buttonOver";
	}
	
	function buttonOut( obj )
	{
		obj.className = "button";
	}
	
	function button2Over( obj )
	{
		obj.className = "button2Over";
	}
	
	function button2Out( obj )
	{
		obj.className = "button2";
	}

//
// END
////////////////////////////////////////////////////////////////////////////////