// 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 (showPress == 'hotw') {
		swapPressImage = '<img src="images/press/springshouses.jpg" />';
		swapPressSource = 'springshouse.com - Home of the Week';
		swapPressDate = 'October 2010';
		swapPressDownload = '<a href="http://springshouses.gazette.com/articles/week-264-forest-nestled.html">Read more</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			
	}	


}
