function buttonOver(img) {
	$(img).attr("src", $(img).attr("src").substr(0, $(img).attr("src").length - 4) + "-over.png");
}

function buttonOut(img) {
	$(img).attr("src", $(img).attr("src").substr(0, $(img).attr("src").length - 9) + ".png");
}