function initializeItemBlocks(){
	for(var i = 1; i < 8; i++){
		myId = "#item_" + i;
		$S(myId).action({
			onmouseover: function(){
				this.style.backgroundColor = "#E1ECF7";
				child = "#" + this.id + " .itemMouseOver";
				$S(child).action({
					initialize: function(){
						this.src = "../images/gif/item_mouse_block_over.gif";
					}
				});
				
			},
			onmouseout: function(){
				this.style.backgroundColor = "";
				child = "#" + this.id + " .itemMouseOver";
				$S(child).action({
					initialize: function(){
						this.src = "../images/gif/item_mouse_block.gif";
					}
				});
			}
		});
	}
}
