// JavaScript Document

function prepareIcons() {
	var icons = document.getElementById('buttons');
	var bgImg = icons.getElementsByTagName('div');
	
	for (var i=0; i < bgImg.length; i++) {
		bgImg[i].onmouseover = function() {
			this.style.backgroundPosition = "0 -105px";
		};
		bgImg[i].onmouseout = function() {
			this.style.backgroundPosition = "0 0";
		};
	}
}
