jQuery((document)).ready(function(){
	jQuery(".greyMenu").each(function(){
		   jQuery((this)).find("DIV.greyMenuItem").each(function(){
			   	this.onmouseover = function(){
					jQuery((this)).find("img").each(function(){
					this.src = this.src.replace(".png","_over.png");
					});
				}
				this.onmouseout = function(){
					jQuery((this)).find("img").each(function(){
					this.src = this.src.replace("_over.png",".png");	
					});
				}
		   });
	});
});
