function rollover(input, type) {
	var name = input.name;
	if (type == "over") {
		input.src = "images/layout/buttons/" + name + "_over.png";
	} else { 
		// Type = rollout
		input.src = "images/layout/buttons/" + name + ".png";
	}
}