var path = "http://media.westfieldinsurance.com/www/";

function linkPath(id, item){
	document.getElementById(id).href = path + item;
}

function imagePath(){
	var imgs,i; 
	imgs=document.getElementsByTagName('img');
	for(i in imgs){
		var srcString = imgs[i].src + "";    
	    var image = srcString.split("images");
	    imgs[i].src = path + "images" + image[1];
	}
}

function imageChange(id, image){
	document.getElementById(id).style.backgroundImage = "url(" + path + image + ")";
	document.getElementById(id).style.backgroundRepeat = "no-repeat";
}
