function changePath()
{
	if($("dwellingId"))
	{
		query = "?dwellingId=" + $("dwellingId").value;
		links = document.getElementsByClassName("dinamic-link");
		links.each(function(link){
			link.href.match(/([^#?]+)(\?([^#]*))?(#.*)?/);
			if(RegExp.$3)
			{
				link.href = RegExp.$1 + query + '&' + RegExp.$3 + RegExp.$4;
			}
			else
			{
				link.href = RegExp.$1 + query + RegExp.$4;
			}
		});
	}
	
	if($("contentPath"))
	{
		subPath = $("contentPath").value;
		iamges = document.getElementsByClassName("dinamic-image");
		iamges.each(function(image){
			image.style.display = 'inline';
			image.src = "./" + subPath + image.src.replace(/.+manshons\//,"");
		});
	}
}

