function rollover(id, action) {
	
	if (action == "over") {
	
		document.getElementById(id).src = "images2/rollover/1design_" + id + ".jpg";
	
	} else {
	
		document.getElementById(id).src = "images2/design_" + id + ".jpg";
	
	}
	
}