function changeImage(index)
{
	document.getElementById('header'+index).src = webURL+'/img/header_ov_0'+index+'.gif';
}

function showOriginal(index)
{
	document.getElementById('header'+index).src = webURL+'/img/header_0'+index+'.gif';	
}

function changeButton(index)
{
	if(index==1)
	document.getElementById('button'+index).src = webURL+'/img/home_owner_ov.gif';
	else
	document.getElementById('button'+index).src = webURL+'/img/realtor_ov.gif';
	document.getElementById('lb_instruction'+index).style.display ='block';
}

function showOriginalButton(index)
{
	if(index==1)
	document.getElementById('button'+index).src = webURL+'/img/home_owner_up.gif';	
	else
	document.getElementById('button'+index).src = webURL+'/img/realtor_up.gif';	
		document.getElementById('lb_instruction'+index).style.display ='none';
}

function changeOwnerImage(index)
{
	if(index==1)
		document.getElementById('owner'+index).src = webURL+'/img/rental_vacant_ov.gif';
	else if(index==2)
		document.getElementById('owner'+index).src = webURL+'/img/owner_occ_ov.gif';
	else if(index==3)
		document.getElementById('owner'+index).src = webURL+'/img/strat_def_ov.gif';
	document.getElementById('lbl_instruction'+index).style.display = 'block';
}

function showOwnerOriginal(index)
{
	if(index==1)
		document.getElementById('owner'+index).src = webURL+'/img/rental_vacant_up.gif';
	else if(index==2)
		document.getElementById('owner'+index).src = webURL+'/img/owner_occ_up.gif';
	else if(index==3)
		document.getElementById('owner'+index).src = webURL+'/img/strat_def_up.gif';
		document.getElementById('lbl_instruction'+index).style.display = 'none';

}
