// JScript File
function swapPress( showPress ) {
	var swapPressImage;
	var swapPressSource;
	var swapPressDate;	
	var swapPressDownload;

	if (showPress == 'chbf') {
		swapPressImage = '<img src="images/press/cahb_cover.gif" />';
		swapPressSource = 'Colorado Builder Forum Article';
		swapPressDate = 'January 2010';
		swapPressDownload = '<a href="docs/cahb.pdf">Download</a>';
	}
	
	if (document.all || document.getElementById) {
			document.getElementById("pressImage").innerHTML = swapPressImage
			document.getElementById("pressSource").innerHTML = swapPressSource			
			document.getElementById("pressDate").innerHTML = swapPressDate			
			document.getElementById("pressDownload").innerHTML = swapPressDownload			
	}	


}