col=38;
red=38;
function fade() {
	document.getElementById("fade").style.color="rgb(" + red + "," + col + "," + col + ")";
	red+=3;
	col-=1;
	if(red<200) setTimeout('fade()', 50);
}

function update(what, where) {
	//in what, need to pull out the src image and replace the location
	var image = what.src
	//remove -thumb
	image = image.replace("thumb_", "");
	document.getElementById(where).innerHTML = '<h5>'+what.title+'</h5><img src="'+image+'">';

}
