function swapImage(roll_name,roll_path,roll_suffix) {
	if(document.images){
    	document.images[roll_name].src = roll_path + roll_name + roll_suffix + '.gif';
	}
}

