/*
 * Make sure to change the root path "/dr/" to the current server root for the site
 */
pic0= new Image(722,192); 
pic0.src="/dr/files/home_page_images/home_page_montage_0.jpg";

pic1= new Image(722,192); 
pic1.src="/dr/files/home_page_images/home_page_montage_1.jpg";

pic2= new Image(722,192); 
pic2.src="/dr/files/home_page_images/home_page_montage_2.jpg";

pic3= new Image(722,192); 
pic3.src="/dr/files/home_page_images/home_page_montage_3.jpg";

pic4= new Image(722,192); 
pic4.src="/dr/files/home_page_images/home_page_montage_4.jpg";

pic5= new Image(722,192); 
pic5.src="/dr/files/home_page_images/home_page_montage_5.jpg";

pic6= new Image(722,192); 
pic6.src="/dr/files/home_page_images/home_page_montage_6.jpg";

pic7= new Image(722,192); 
pic7.src="/dr/files/home_page_images/home_page_montage_7.jpg";

pic8= new Image(722,192); 
pic8.src="/dr/files/home_page_images/home_page_montage_8.jpg";

pic9= new Image(722,192); 
pic9.src="/dr/files/home_page_images/home_page_montage_9.jpg";




function swapTags(in_tagId) {
	//alert(in_tagId)
	var topTagDiv = document.getElementById('home-top-tag');
	topTagDiv.innerHTML = topTagsArr[in_tagId];
	
	var bottomTagDiv = document.getElementById('home-bottom-tag');
	bottomTagDiv.innerHTML = bottomTagsArr[in_tagId];
	
	var img = document.getElementById("montage_image_map");
	var defaultSrc = img.getAttribute('src');
	var newSrc = imgSrc.replace(".jpg", "_"+in_tagId+".jpg");
	
	img.setAttribute("src", newSrc);
}

function resetDefaultTags() {
	var topTagDiv = document.getElementById('home-top-tag');
	topTagDiv.innerHTML = topDefaultTag;
	
	var bottomTagDiv = document.getElementById('home-bottom-tag');
	bottomTagDiv.innerHTML = bottomDefaultTag;
	
	var img = document.getElementById("montage_image_map");
	
	img.setAttribute("src", imgSrc);
}