	function imageReSize() {
	// Scale image to fit the box of 80 x 60 px 
		image1 = document.getElementById('item1Image');
		image2 = document.getElementById('item2Image');
		if(image1.width/image1.height > 1.33) {
			image1.width = 80;
		} else {
			image1.height = 60;
		}
		if(image2.width/image2.height > 1.33) {
			image2.width = 80;
		} else {
			image2.height = 60;
		}
	}	
	
	function trailingString() {
	// If heading length is more than 38 characters
	var heading1 = document.getElementById('heading1').innerHTML;
	var heading2 = document.getElementById('heading2').innerHTML;
	var tmpString = "";
	
		if(heading1.length > 38) {
			tmpString = heading1.substring(0,35)+'...';
			document.getElementById('heading1').innerHTML = tmpString;	
		}
	
		if(heading2.length > 38) {
			tmpString = heading2.substring(0,35)+'...';
			document.getElementById('heading2').innerHTML = tmpString;	
		}
	}